Bài giảng Phát triển ứng dụng Web: Bài 5 - Nguyễn Hữu Thể
Số trang: 32
Loại file: pdf
Dung lượng: 440.55 KB
Lượt xem: 18
Lượt tải: 0
Xem trước 4 trang đầu tiên của tài liệu này:
Thông tin tài liệu:
Bài giảng Phát triển ứng dụng Web: Bài 5 Object oriented programming cung cấp cho người học những kiến thức như: Visibility; Properties & Methods; Getter & Setter; Create objects; Constructor; Destructor; Inheritance; Abstract class; Interfaces; Autoloading classes; Anonymous functions; Closures; Namespace.
Nội dung trích xuất từ tài liệu:
Bài giảng Phát triển ứng dụng Web: Bài 5 - Nguyễn Hữu Thể PHÁT TRIỂN ỨNG DỤNG WEB OBJECT ORIENTED PROGRAMMING Nguyễn Hữu Thể Content 1. Class 2. Visibility 3. Properties & Methods 4. Getter & Setter 5. Create objects 6. Constructor 7. Destructor 8. Inheritance 9. Abstract class 10. Interfaces 11. Autoloading classes 12. Anonymous functions 13. Closures 14. Namespace 2 Class class ClassName { // Properties // Methods } 3 Visibility (public, private, protected) − Three levels: • public • private • protected − By default, all class members are public. 4 Properties & Methods class Person { private $name; //public, protected private $age; public function show(){ echo $this->name . ' is ' . $this->age . ' years old!'; } } 5 Create objects (Create a new instance of the class) − Using the new keyword: new ClassName() − For example: $person = new PerSon(); $person2 = new PerSon(); 6 Getter & Setter PHP JAVA class Person class Person { { private $name; private String name; private $age; private int age; public function getName(){ public String getName(){ return $this->name; return name; } } public function setName($name){ public void setName(String name){ $this->name = $name; this.name = name; } } public function getAge(){ public int getAge(){ return $this->age; return age; } } public function setAge($age){ public void setAge(int age){ $this->age = $age; this.age = age; } } } } 7 class Person{ Ex: Person.php private $name; private $age; public function getName(){ return $this->name; } public function setName($name){ $this->name = $name; } public function getAge(){ return $this->age; } public function setAge($age){ $this->age = $age; } public function show(){ echo $this->name . ' is ' . $this->age . ' years old!'; } $p = new Person(); } $p->setName('Nguyễn Văn A'); $p->setAge(18); echo $p->getName() . ' is ' . $p->getAge() . ' years old.'; //echo '{$p->getName()} is {$p->getAge()} years old.'; $p->show(); 8 __set() method class SetName { public function __set($variable, $value) { // echo $variable; echo 'My ' . $variable . ' is ' . $value . '\n'; } } $obj = new SetName (); $obj->Name = ‘Tom'; $obj->Name = ‘Jerry'; My Name is Tom My Name is Jerry 9 __get() method class GetName { public $type = 'chocolate'; public $choctype = array ( 'milk' => 0, 'dark' => 1, 'plain' => 2 ); public function wrap() { echo 'Its a wrap'; } public function __get($index) { echo '$choctype property with index of: ' . $index . ''; return $this->choctype [$index]; } } $candy = new GetName (); // set a non existant property echo 'Value of property is: ' . $candy->milk; $choctype property with index of: milk 10 Value of property is: 0 Constructor public function __construct() { //... } public function __construct($name, $age) { //... } 11 Constructor class Person{ private $name; private $age; public function __construct($name, $age) { $this->name = $name; $this->age = $age; } public function show(){ echo $this->name . ' is ' . $this->age . ' years old!'; } } $p = new Person('Nguyễn Trần Lê', 18); $p->show(); 12 Destructor public function __destruct() { //... } − Example: public function __destruct() { echo 'Bye bye!'; //... } − Using: $p = new Person('Nguyễn Trần Lê', 18); unset( $p ); // or exit: call __destruct() object $p->show(); // Object not found 13 Inheritance class ParentClass { public function myMethod() { // Method code here } } class ChildClass extends ParentClass { public function myMethod() { // For ChildClass objects, this method is called // instead of the p ...
Nội dung trích xuất từ tài liệu:
Bài giảng Phát triển ứng dụng Web: Bài 5 - Nguyễn Hữu Thể PHÁT TRIỂN ỨNG DỤNG WEB OBJECT ORIENTED PROGRAMMING Nguyễn Hữu Thể Content 1. Class 2. Visibility 3. Properties & Methods 4. Getter & Setter 5. Create objects 6. Constructor 7. Destructor 8. Inheritance 9. Abstract class 10. Interfaces 11. Autoloading classes 12. Anonymous functions 13. Closures 14. Namespace 2 Class class ClassName { // Properties // Methods } 3 Visibility (public, private, protected) − Three levels: • public • private • protected − By default, all class members are public. 4 Properties & Methods class Person { private $name; //public, protected private $age; public function show(){ echo $this->name . ' is ' . $this->age . ' years old!'; } } 5 Create objects (Create a new instance of the class) − Using the new keyword: new ClassName() − For example: $person = new PerSon(); $person2 = new PerSon(); 6 Getter & Setter PHP JAVA class Person class Person { { private $name; private String name; private $age; private int age; public function getName(){ public String getName(){ return $this->name; return name; } } public function setName($name){ public void setName(String name){ $this->name = $name; this.name = name; } } public function getAge(){ public int getAge(){ return $this->age; return age; } } public function setAge($age){ public void setAge(int age){ $this->age = $age; this.age = age; } } } } 7 class Person{ Ex: Person.php private $name; private $age; public function getName(){ return $this->name; } public function setName($name){ $this->name = $name; } public function getAge(){ return $this->age; } public function setAge($age){ $this->age = $age; } public function show(){ echo $this->name . ' is ' . $this->age . ' years old!'; } $p = new Person(); } $p->setName('Nguyễn Văn A'); $p->setAge(18); echo $p->getName() . ' is ' . $p->getAge() . ' years old.'; //echo '{$p->getName()} is {$p->getAge()} years old.'; $p->show(); 8 __set() method class SetName { public function __set($variable, $value) { // echo $variable; echo 'My ' . $variable . ' is ' . $value . '\n'; } } $obj = new SetName (); $obj->Name = ‘Tom'; $obj->Name = ‘Jerry'; My Name is Tom My Name is Jerry 9 __get() method class GetName { public $type = 'chocolate'; public $choctype = array ( 'milk' => 0, 'dark' => 1, 'plain' => 2 ); public function wrap() { echo 'Its a wrap'; } public function __get($index) { echo '$choctype property with index of: ' . $index . ''; return $this->choctype [$index]; } } $candy = new GetName (); // set a non existant property echo 'Value of property is: ' . $candy->milk; $choctype property with index of: milk 10 Value of property is: 0 Constructor public function __construct() { //... } public function __construct($name, $age) { //... } 11 Constructor class Person{ private $name; private $age; public function __construct($name, $age) { $this->name = $name; $this->age = $age; } public function show(){ echo $this->name . ' is ' . $this->age . ' years old!'; } } $p = new Person('Nguyễn Trần Lê', 18); $p->show(); 12 Destructor public function __destruct() { //... } − Example: public function __destruct() { echo 'Bye bye!'; //... } − Using: $p = new Person('Nguyễn Trần Lê', 18); unset( $p ); // or exit: call __destruct() object $p->show(); // Object not found 13 Inheritance class ParentClass { public function myMethod() { // Method code here } } class ChildClass extends ParentClass { public function myMethod() { // For ChildClass objects, this method is called // instead of the p ...
Tìm kiếm theo từ khóa liên quan:
Bài giảng Phát triển ứng dụng Web Phát triển ứng dụng Web Ứng dụng Web Object oriented programming Autoloading classes Anonymous functions Abstract classGợi ý tài liệu liên quan:
-
Nâng cao tính bảo mật trong xác thực người dùng Web sử dụng đặc trưng sinh trắc học
12 trang 206 0 0 -
8 trang 196 0 0
-
Một số vấn đề an toàn cho các ứng dụng trên nền web
16 trang 123 0 0 -
Giáo trình Phát triển ứng dụng web: Phần 2 - Lê Đình Thanh, Nguyễn Việt Anh
126 trang 80 0 0 -
5 trang 64 0 0
-
Bài giảng Phát triển ứng dụng web 1: HTML From - ĐH Sài Gòn
34 trang 62 0 0 -
Phát triển thuật toán sinh code cho ứng dụng web chuẩn đoán bệnh thủy sản với ATL
10 trang 45 0 0 -
Bài giảng Phát triển ứng dụng web: Chương 0 - Lê Đình Thanh
10 trang 38 0 0 -
Bài giảng Phát triển ứng dụng web: Chương 7 - Lê Đình Thanh
41 trang 37 0 0 -
Bài giảng Phát triển ứng dụng web: Chương 1 - Lê Đình Thanh
47 trang 36 0 0