Inheritance is a way to reuse the code of existing objects. In this video tutorial we’re illustrating single inheritance mechanism.
In this tutorial, we take a class called Vehicle with 3 attributes – color, accelerate and decelerate. And 3 methods – design, acceleration, deceleration.
< ?php
class Vehicle
{
public $color;
public $accelerate;
public $decelerate;
function design($assign)
{
$this->color = $assign;
}
function acceleration($positive)
{
$this->accelerate = $positive;
}
function deceleration($negetive)
{
$this->decelerate = $negetive;
}
}
?>
< ?php
class Vehicle
{
public $color;
public $accelerate;
public $decelerate;
function design($assign)
{
$this->color = $assign;
}
function acceleration($positive)
{
$this->accelerate = $positive;
}
function deceleration($negetive)
{
$this->decelerate = $negetive;
}
}
?>
Using the methods – design, acceleration and deceleration we assign values to the public attributes color, accelerate and decelerate.
Inherit Vehicle Class To Class Car inheritance.php
< ?php
class Vehicle
{
public $color;
public $accelerate;
public $decelerate;
function design($assign)
{
$this->color = $assign;
}
function acceleration($positive)
{
$this->accelerate = $positive;
}
function deceleration($negetive)
{
$this->decelerate = $negetive;
}
}
class Car extends Vehicle
{
}
?>
< ?php
class Vehicle
{
public $color;
public $accelerate;
public $decelerate;
function design($assign)
{
$this->color = $assign;
}
function acceleration($positive)
{
$this->accelerate = $positive;
}
function deceleration($negetive)
{
$this->decelerate = $negetive;
}
}
class Car extends Vehicle
{
}
?>
Controlling Access with public, private and protected access modifiers. These access specifiers can be used on both variables/attributes and methods.
In this video tutorial, we’ll demonstrate it using attributes.
Access Specifiers: 1. public 2. private 3. protected
Class With Attributes
1
2
3
4
5
6
7
8
9
< ?php
class container
{
var $a = 10;
public $b = 20;
private $c = 30;
protected $d = 40;
}
?>
< ?php class container { var $a = 10;
public $b = 20;
private $c = 30;
protected $d = 40; }
?>
var $a is similar to writing public $a
We shall extend class container to another class called contains. Extending class is an inheritance property, and we shall discuss inheritance in another article. For now, know that, with extends keyword, all the properties and methods with public / protected access are inherited.
Extends
1
2
3
4
5
6
7
8
9
10
11
12
13
< ?php
class container
{
var $a = 10;
public $b = 20;
private $c = 30;
protected $d = 40;
}
class contains extends container
{
}
?>
< ?php class container { var $a = 10;
public $b = 20;
private $c = 30;
protected $d = 40; } class contains extends container { }
?>
Here, contents of class container is extended by class contains.
Object of class container
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
< ?php
class container
{
var $a = 10;
public $b = 20;
private $c = 30;
protected $d = 40;
}
class contains extends container
{
}
$obj1 = new container();
echo $obj1->a;
echo $obj1->b;
?>
< ?php class container { var $a = 10;
public $b = 20;
private $c = 30;
protected $d = 40; } class contains extends container { } $obj1 = new container(); echo $obj1->a; echo $obj1->b;
?>
This outputs: 10 and 20 respectively.
Object of class contains
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
< ?php
class container
{
var $a = 10;
public $b = 20;
private $c = 30;
protected $d = 40;
}
class contains extends container
{
}
$obj2 = new contains();
echo $obj2->a;
echo $obj2->b;
?>
< ?php class container { var $a = 10;
public $b = 20;
private $c = 30;
protected $d = 40; } class contains extends container { } $obj2 = new contains(); echo $obj2->a; echo $obj2->b;
?>
This outputs: 10 and 20 respectively. i.e., public attributes are inherited
Accessing private / protected attributes outside class
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
< ?php
class container
{
var $a = 10;
public $b = 20;
private $c = 30;
protected $d = 40;
}
class contains extends container
{
}
$obj1 = new container();
echo $obj1->c;
echo $obj1->d;
?>
< ?php class container { var $a = 10;
public $b = 20;
private $c = 30;
protected $d = 40; } class contains extends container { } $obj1 = new container(); echo $obj1->c; echo $obj1->d;
?>
It through’s error, since you cannot access, private and protected variables/attributes outside the class.
Now lets check if private and protected variables are actually inherited:
Inheriting private attribute
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
< ?php
class container
{
var $a = 10;
public $b = 20;
private $c = 30;
protected $d = 40;
}
class contains extends container
{
function __construct()
{
echo $this->c;
}
}
$obj1 = new contains();
?>
< ?php class container { var $a = 10;
public $b = 20;
private $c = 30;
protected $d = 40; } class contains extends container { function __construct()
{
echo $this->c;
} } $obj1 = new contains();
?>
This through’s error, because $c is not inherited to class contains and thus not present inside class contains. Which means, private variables and methods cannot be inherited.
Inheriting protected attribute
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
< ?php
class container
{
var $a = 10;
public $b = 20;
private $c = 30;
protected $d = 40;
}
class contains extends container
{
function __construct()
{
echo $this->d;
}
}
$obj1 = new contains();
?>
< ?php class container { var $a = 10;
public $b = 20;
private $c = 30;
protected $d = 40; } class contains extends container { function __construct()
{
echo $this->d;
} } $obj1 = new contains();
?>
Output’s 40. This means, protected variables and methods are inherited.
Conclusion public attributes and methods are inherited and can be accessed outside the class. private attributes and methods cannot be inherited and cannot be accessed outside the class. protected attributes and methods can be inherited but cannot be accessed outside the class.
myWindow() is the constructor, and thus it’s name matches with that of its class name. setTitle() : To set the string present on the title bar of the window we are creating. setSize() : To set the size of the window. It takes two parameters, width and height of the window. setVisible() : It’s very important for all the programs which involves visual components. passing a value of true makes the window visible.
Main method
public static void main(String args[])
{
// new myWindow();
myWindow m1 = new myWindow();
}
public static void main(String args[])
{ // new myWindow();
myWindow m1 = new myWindow();
}
main method just calls the constructor. We can simply write new myWindow() since we are not at all taking the help of any object here.
Video Tutorial: Creating Simple Window in Java: using swings