PHP中的Object和Class有什么区别?我问,因为,我并没有真正看到他们两个的意思。
你能告诉我与好例子的区别吗?
答案 0 :(得分:49)
我假设您在基本的PHP OOP上有read the manual。
用于定义对象的属性,方法和行为的类。对象是您在课堂上创建的东西。将类视为蓝图,将对象视为通过遵循蓝图(类)构建的实际构建。 (是的,我知道蓝图/建筑类比已经完成了死亡。)
// Class
class MyClass {
public $var;
// Constructor
public function __construct($var) {
echo 'Created an object of MyClass';
$this->var = $var;
}
public function show_var() {
echo $this->var;
}
}
// Make an object
$objA = new MyClass('A');
// Call an object method to show the object's property
$objA->show_var();
// Make another object and do the same
$objB = new MyClass('B');
$objB->show_var();
这里的对象是不同的(A和B),但它们都是MyClass
类的对象。回到蓝图/建筑类比,将其视为使用相同的蓝图来建造两座不同的建筑。
如果你需要一个更为文字的例子,这是另一个实际谈论建筑物的片段:
// Class
class Building {
// Object variables/properties
private $number_of_floors = 5; // Each building has 5 floors
private $color;
// Constructor
public function __construct($paint) {
$this->color = $paint;
}
public function describe() {
printf('This building has %d floors. It is %s in color.',
$this->number_of_floors,
$this->color
);
}
}
// Build a building and paint it red
$bldgA = new Building('red');
// Build another building and paint it blue
$bldgB = new Building('blue');
// Tell us how many floors these buildings have, and their painted color
$bldgA->describe();
$bldgB->describe();
答案 1 :(得分:1)
对于新开发者:
课程
类是方法和变量的集合
class Test{
const t = "OK";
var $Test;
function TestFunction(){
}
}
对象
对象是类的实例(当您要使用类和所创建的东西时)
$test = new Test();
$test->TestFunction();//so here you can call to your class' function through the instance(Object)
答案 2 :(得分:0)
类是包含结构和行为的组定义,而对象是具有结构和行为的任何事物。对象是一个类的实例,我们可以创建同一类的多个对象。