Blogger Information
Blog 29
fans 1
comment 0
visits 23092
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
PHP中的trait功能语法实现,扩展,代码复用
阿心
Original
725 people have browsed it

trait 功能与语法

  1. <?php
  2. //trait 功能与语法
  3. //Trait 和一个类相似,但仅仅旨在用细粒度和一致的方式来组合功能。Trait 不能通过它自身来实例化。它为传统继承增加了水平特性的组合;也就是说,应用类的成员不需要继承。
  4. trait Demo
  5. {
  6. protected $name="张冠李戴";
  7. static $age;
  8. abstract function Test();
  9. }
  10. class Demo1
  11. {
  12. //引入关键字 use
  13. use Demo;
  14. function Test()
  15. {
  16. echo Demo::$age;
  17. }
  18. }
  19. $demo1=new Demo1;
  20. //给静态变量赋值
  21. Demo::$age=33;
  22. $demo1->Test();

trait:代码复用

  1. <?php
  2. //trait:代码复用
  3. //get_class_vars — 返回由类的默认属性组成的数组
  4. trait tDemo
  5. {
  6. function con()
  7. {
  8. $cl=get_class_vars(__CLASS__);
  9. printf('<pre>%s</pre>',print_r($cl,true));
  10. }
  11. }
  12. class Demo
  13. {
  14. use tDemo;
  15. protected $Title='百度';
  16. public $Http='https://baidu.com';
  17. public function baidu()
  18. {
  19. echo $this->Title,"--的网址是:".$this->Http,"<br>";
  20. }
  21. }
  22. $demo=new Demo;
  23. $demo->baidu();
  24. $demo->con();
  25. class Demo1
  26. {
  27. use tDemo;
  28. protected $Title='百度';
  29. public $Http='https://baidu.com';
  30. public $arr=[1,2,3,[4,5,6,[7,8,9]]];
  31. public function baidu()
  32. {
  33. echo $this->Title,"--的网址是:".$this->Http,"<br>来个数组:",printf('<pre>%s<pre>',print_r(($this->arr),true));
  34. }
  35. }
  36. $demo1=new Demo1;
  37. $demo1->con();
  38. $demo1->baidu();

trait: 在继承上下文环境

  1. <?php
  2. // trait2: 在继承上下文环境中, 具有优先级, 通过优先的设置, 降低单继承的影响
  3. //这个优先级可以替换同名函数
  4. trait tDemo
  5. {
  6. function test()
  7. {
  8. //输出trait的方法
  9. echo 'son访问到了trait方法是:',__METHOD__;
  10. }
  11. }
  12. class Dad
  13. {
  14. function test()
  15. {
  16. echo 'son访问到了class方法是:',__METHOD__;
  17. }
  18. }
  19. class Son extends Dad
  20. {
  21. use tDemo;
  22. }
  23. $son=new Son;
  24. $son->test();

trait扩展

  1. <?php
  2. //trait组合实现功能扩展
  3. //功能扩展:
  4. trait tDemo1
  5. {
  6. function class_name()
  7. {
  8. //格式化打印类中属性
  9. $class_name=get_class_vars(__CLASS__);
  10. printf('<pre>%s</pre>',print_r($class_name,true));
  11. }
  12. }
  13. trait tDemo2
  14. {
  15. function method_name()
  16. {
  17. //格式化打印类中方法
  18. $method_name=get_class_methods(__CLASS__);
  19. printf('<pre>%s</pre>',print_r($method_name,true));
  20. }
  21. }
  22. //或更多trait
  23. class Test
  24. {
  25. use tDemo1,tDemo2;//同时引入
  26. public $name="手机";
  27. public $price=2000;
  28. }
  29. $test=new Test;
  30. $test->class_name();//调用函数,打印出当前类中的属性
  31. $test->method_name();
  32. //或者:
  33. trait tDemo3
  34. {
  35. use tDemo1,tDemo2;
  36. function mar()
  37. {
  38. }
  39. public static function test()
  40. {
  41. }
  42. abstract public function abtest();
  43. public $address='地球';
  44. public $type='外星人';
  45. }
  46. class Test1
  47. {
  48. use tDemo3;
  49. public $age=3000;
  50. public function abtest(){
  51. }
  52. }
  53. $test1=new Test1;
  54. $test1->class_name();
  55. $test1->method_name();

总结:记性不太好,还是很多记不住,有时候靠猜或者靠测试。trait不难理解。

Correcting teacher:天蓬老师天蓬老师

Correction status:qualified

Teacher's comments:原来你写代码全靠运气, 看来你的运气不错
Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post