五月天青色头像情侣网名,国产亚洲av片在线观看18女人,黑人巨茎大战俄罗斯美女,扒下她的小内裤打屁股

歡迎光臨散文網(wǎng) 會(huì)員登陸 & 注冊(cè)

靜態(tài)內(nèi)部類(lèi)的使用

2022-06-26 19:45 作者:虛云幻仙  | 我要投稿

/**
* 測(cè)試靜態(tài)內(nèi)部類(lèi)的使用
*/

public class Outer2 {
? ?public int age = 10;
? ?public static int speed = 20;
? ?public static String name = "aa";
? ?public int money = 100;

? ?public static class Inner2{
? ? ? ?//添加static修飾變成靜態(tài)內(nèi)部類(lèi)
? ? ? ?public int age = 20;
? ? ? ?public int speed = Outer2.speed + 10;
? ? ? ?//靜態(tài)變量speed屬于類(lèi) 不用加this.

? ? ? ?public void pr(){
? ? ? ? ? ?System.out.println(speed);
? ? ? ? ? ?System.out.println("Inner2.pr");
? ? ? ? ? ?System.out.println(Outer2.speed);
? ? ? ? ? ?//無(wú)法調(diào)用Outer2.age 靜態(tài)內(nèi)部類(lèi)中只能調(diào)用外部類(lèi)的靜態(tài)內(nèi)容
? ? ? ? ? ?System.out.println(name);
? ? ? ? ? ?//內(nèi)部類(lèi)中沒(méi)有定義name時(shí)會(huì)調(diào)用Outer2.name
? ? ? ?}
? ?}
}

class TestInner2{
? ?public static void main(String[] args) {
? ? ? ?Outer2 o2 = new Outer2();
? ? ? ?Outer2.Inner2 i2 = new Outer2.Inner2();
? ? ? ?//靜態(tài)內(nèi)部類(lèi)通過(guò)外部類(lèi)調(diào)用 不通過(guò)外部類(lèi)的對(duì)象
? ? ? ?i2.pr();
? ? ? ?//Inner2是static 但I(xiàn)nner2內(nèi)的age speed是成員變量 pr()是非靜態(tài)方法 都屬于對(duì)象
? ?}
}

靜態(tài)內(nèi)部類(lèi)的使用的評(píng)論 (共 條)

分享到微博請(qǐng)遵守國(guó)家法律
宜宾县| 邢台县| 衢州市| 临泉县| 如皋市| 新巴尔虎右旗| 黑水县| 晋江市| 娱乐| 京山县| 精河县| 绥滨县| 南宁市| 射洪县| 西昌市| 舞钢市| 呼图壁县| 大足县| 长沙市| 蚌埠市| 九龙县| 安丘市| 蓬安县| 永州市| 呼和浩特市| 从化市| 固阳县| 桃园市| 怀安县| 中江县| 平阴县| 桓台县| 乌拉特后旗| 集贤县| 天气| 延川县| 洪雅县| 德兴市| 瑞昌市| 奉贤区| 凤庆县|