再給你補充點Demo類的寫法,以此類推就可以了……
企業(yè)官網(wǎng)是企業(yè)形象的一張重要名片。成都創(chuàng)新互聯(lián)的成都官網(wǎng)定制服務(wù),能夠?qū)⒊啥季W(wǎng)頁設(shè)計與企業(yè)的實力&公信力、產(chǎn)品服務(wù)優(yōu)勢、文化價值觀等有機結(jié)合,把握企業(yè)的獨特之處,突出重點核心內(nèi)容,并以恰如其分的設(shè)計風(fēng)格,抓住目標(biāo)用戶的關(guān)注點和興趣點,幫助企業(yè)塑造好第一印象,成都全網(wǎng)營銷推廣展現(xiàn)公司實力。成都官網(wǎng)定制,為你解決成都創(chuàng)新互聯(lián)網(wǎng)營銷解決方案。
public class Demo {
public static void main(String[] args){
People p1=new ChinaPeople();//父類對象當(dāng)做子類對象看,因此只能調(diào)用父類對象中已有的方法
p1.speakHello();
p1.averageHeight();
p1.averageWeight();
if(p1 instanceof ChinaPeople){
ChinaPeople c1=(ChinaPeople)p1;//強轉(zhuǎn)
c1.chinaGongfu();}
}
}
//main方法里如果你覺得麻煩就直接這樣寫好了
ChinaPeople c=new ChinaPeople();
c.speakHello();
c.averageWeght();
c.averageHeight();
c.chinaGongfu();
明白java輸出字符的含義嗎?java輸出的也都是字符集中的字符,假如字符集中沒有這個字,那是不可能輸出的。所以一個漢字倒過來,那么在字符集中必須找到對應(yīng)這個漢字倒過來的那個字節(jié)碼。通常沒有哪個字符集會包含這種無用的字節(jié)碼所以,java做不到。
public?static?void?main(String[]?args)?{
String?s?=?"我是中國人,中國是中國,中國好";
ListInteger?idsIndexs=new?ArrayListInteger();
find("中國",?0,?s,idsIndexs);
System.out.println("出現(xiàn)的下標(biāo)"+idsIndexs);
System.out.println("出現(xiàn)次數(shù):"+idsIndexs.size());
}
public?static?List?find(String?s,?int?index,?String?string,ListInteger?ids)?{
//從指定下標(biāo)開始尋找
int?temp=?string.indexOf(s,?index);
//如果找到了,就保存當(dāng)前的下標(biāo)
if(temp-1)?{
ids.add(temp);
index=temp+s.length();//下一次尋找的下標(biāo)加上字符串長度,作為新下標(biāo)開始尋找
return?find(s,?index,?string,?ids);
}else?{
return?ids;
}
}
出現(xiàn)的下標(biāo)[2, 6, 9, 12]
出現(xiàn)次數(shù):4
public static void main(String[] args){
String str = "我是中國人";
StringBuilder sb = new StringBuilder(str);
str = sb.reverse().toString();
System.out.println(str);
}