相信对于继承和多态的概念性我就不在怎么解释啦!不管你是.Net还是Java面向对象编程都是比不缺少一堂课~~Net如此Java亦也有同样的思想成分包含其中. 继承,多态,封装是Java面向对象的3大特征. 继承 如果用.Net写一个A类继承B类的话,写法会是大致如下: Public Class A : B{ ....... } Java的话却要通过extends关键字在声明类的时候指定其父类(基类),所以上面的.Net写法要转换成Java的话应该是下面的样子: Public clas A ext…
类与对象: 类的定义与实例化. //定义类 class person{ public $name; public $gender; public function say(){ echo $this->name,"\tis ",$this->gender,"\r\n"; } } class family{ public $people; public $location; public function __construct($p,$loc) { $t…
一.使用字符串作为条件查询 在 Home/controller/UserController.class.php 下插入 <?php namespace Home\Controller; use Think\Controller; use Think\Model; class UserController extends Controller { public function model() { $user = M('User'); var_dump($user->where('id=1')…
<?php /** * Created by PhpStorm. * User: cl * Date: 2019/8/12 * Time: 7:08 */ /*oop*/ class Person{ public $name; public $gender; public function say(){ echo $this->name,'is',$this->gender; } } $student = new Person(); $student->name = "C…
基础捡漏: 1.短标记<??> 通过修改ini文件的short_open_tag或编译时 --enable-short-tags 可用 不推荐使用. 2.?>默认有隐藏分号结束,而文件最后可以省略?> 3.使用条件的高级分离术 <?php if ($expression == true): ?> This will show if the expression is true.<?php else: ?> Otherwise this will show…
1.类文件位置:path/to/yiiframework/utils/CVarDumper.php 2.作用:CVarDumper is intended to replace the buggy PHP function var_dump and print_r.即CVarDumper是用来替换掉问题多多的PHP内置函数var_dump和print_r的,具体来说:It can correctly identify the recursively referenced objects in a…