Show sourcecode
The following files exists in this folder. Click to view.
class.html
ovn_class1.php
ovn_class2.php
ovn_class3.php
ovn_class4.php
ovn_class4.php
89 lines UTF-8 Windows (CRLF)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Boll Program</title>
</head>
<body>
<?php
error_reporting(E_ALL);
ini_set('display_errors', 1);
class Boll {
protected $farg;
protected $radie;
public function __construct($farg = null, $radie = null) {
$this->farg = $farg;
$this->radie = $radie;
}
public function sattFarg($nyFarg) {
$this->farg = $nyFarg;
}
public function sattRadie($nyRadie) {
$this->radie = $nyRadie;
}
public function hamtaInfo() {
return "Bollen har färgen $this->farg och radien $this->radie cm.";
}
}
// Subklass för Fotboll
class Fotboll extends Boll {
private $paneler;
public function __construct($farg = null, $radie = null, $paneler = 32) {
parent::__construct($farg, $radie);
$this->paneler = $paneler;
}
public function sattPaneler($antalPaneler) {
$this->paneler = $antalPaneler;
}
public function hamtaInfo() {
return "Fotbollen har färgen $this->farg, radien $this->radie cm och $this->paneler paneler.";
}
}
// Subklass för Basket
class Basket extends Boll {
private $material;
public function __construct($farg = null, $radie = null, $material = "läder") {
parent::__construct($farg, $radie);
$this->material = $material;
}
public function sattMaterial($nyttMaterial) {
$this->material = $nyttMaterial;
}
public function hamtaInfo() {
return "Basketen har färgen $this->farg, radien $this->radie cm och är gjord av $this->material.";
}
}
// Skapar objekt från huvudklassen och subklasserna
$boll = new Boll("blå", 8);
$Fotboll = new Fotboll("vit", 11);
$Basket = new Basket("orange", 12);
$Fotboll->sattPaneler(24);
$Basket->sattMaterial("syntetiskt läder");
// Visa information om alla bollar
echo $boll->hamtaInfo();
echo "<br>";
echo $Fotboll->hamtaInfo();
echo "<br>";
echo $Basket->hamtaInfo();
?>
</body>
</html>