<?php
include("hero.class.php");
$hero = new hero("張三"); //建立英雄
/*$hero->daguai();
$hero->show();
$hero->daguai();
$hero->show();
$hero->daguai();
$hero->show();
$hero->daguai();
$hero->show();
$hero->daguai();
$hero->show();*/
$hero->xuexi();
$hero->show();
$hero->xuexi();
$hero->show();
?>
<?php
class hero
//打怪函式
function daguai()
echo $this->name."殺死了乙個怪物,獲得了點經驗";
}else
else
echo "你被怪物打死了";}}
//檢視英雄資訊
function show()
";echo "英雄血量:
";echo "英雄攻擊:
";echo "英雄經驗:
";echo "英雄等級:
";echo "技能為:";
foreach($this->jineng as $v)
}//學習技能
function xuexi()}}
物件導向練習
定義boat和car兩個類,兩者都有私有成員weight屬性,定義兩者的乙個友員函式totalweight 計算兩個類的物件的重量和。請根據給定的main函式和totalweight 函式的定義,完善boat和car兩個類。友元函式的使用 include using namespace std cl...
物件導向前練習
總結 1.python的命名規則 只能以字母數字下劃線命名,不能以數字開頭,變數名不能是保留字元,1.2.行的縮排 1.3.注釋 1.4.不換行輸出 print 表示式1,表示式2,end 1.5三目運算子的格式,符合條件結果 if 條件 else 不符合條件結果 2.資料型別 2.1數字型別 整數...
物件導向知識練習
author ryzreal date 2018 7 2 類的定義 class 類名 def 方法名 self,args,kwargs print args return 1 中間人 類名 ret 中間人.方法名 1 print ret self 等於被呼叫的中間人 公共的部分可以封裝到中間人裡 c...