第二節 14常量

2021-09-08 02:53:31 字數 1414 閱讀 8481

using system;

using system.collections.generic;

using system.linq;

using system.text;

/* 常量與靜態成員

* const常量,常量名要大寫

* 不用new就能用的方法: static方法,static方法其實就是普通的函式

* 在static方法中可以呼叫其他static方法,字段,屬性,但不能呼叫非static方法,字段,屬性,在非static方法可可以呼叫static的方法,字段

* *

*/namespace _14常量

",l);

int m = pi * r * r;

console.writeline("面積:",m);

*///靜態成員方法的訪問,可以直接訪問

person.totalcount = 11;

console.writeline("person.totalcount==", person.totalcount);

= 22;

doit();

program p = new program();

p.toit();

//不同類中的非靜態方法訪問靜態訪問

dog d = new dog();

d.叫換();

//靜態方法訪問靜態訪法

//person.人口匯報();

person pp = new person();

pp.sayhello();

int returint = consolehelper.readint();

console.writeline("返回值為:",returint);

//乙個靜態空不能被例項化

//靜態類一般用來實現一些純的函式類

//consolehelper = new consolehelper();

console.readkey();

}public void toit()

",person.totalcount);

}public static void doit()

",person.totalcount);}}

public class person

,年齡:",totalcount,age);

//在static成員中不能直接呼叫非static成員

}public void sayhello()

,全球總人口是:",age,totalcount);}}

public class dog

",person.totalcount);}}

//宣告乙個靜態的類

static class consolehelper

}}

彙編 第二節

第二節 cpu主要有有運算器,控制器,暫存器,三部分組成 8086 cpu有14個暫存器,如ax,bx,cx,dx,si。8086所有暫存器都是16位的,可以存放2個byte即位元組,16位二進位制數 所能存放的最大數值是 11111111111 2 16 1 從0開始,所以 1嘛 通用暫存器為4個...

函式第二節

coding utf 8 1.定義乙個方法get num num num引數是列表型別,判斷列表裡面的元素為數字型別。其他型別則報錯,並且返回乙個偶數列表 注 列表裡面的元素為偶數 def get num l l for i in l 判斷列表l的元素是否都為整形 if not isinstance...

第二節練習

a b 2 鏈式賦值 print a print b c id a 位址print c c type a 型別 print c a,b 2,3 系列解包賦值 a,b b,a print a print b 基本運算 print 3 2 print 30 5 print 30 5 print 30 5...