一、筆記
1.語法:[public] enum 列舉名
public:訪問修飾符,公開得公共的,哪都可以訪問
enum:關鍵字,宣告列舉的的關鍵字
列舉宣告到命名空間下面
2.ctrl + k +d 快速對齊** ctrl + z 撤銷
ctrl + s 儲存
ctrl + j 快速彈出智慧型提示
shift + end、shift + home、shift + 上下左右 選中單行內容
ctrl + k + c 快速注釋選中內容
ctrl + k + u 快速取消注選中的注釋內容
alt + shift +f10 新增命名空間
f1 轉到幫助
f12 檢視型別定義
#region …#endregion 摺疊**
3. 列舉型別可以和int型別還有string型別進行轉換
列舉型別預設跟int型別相相容,所以可以通過強制型別轉換的語法相互轉換。
二、**
1.
namespace _07
public
enum sensoning
public
enum qqstaus
class
program
",s)
;break
;case
"2":
qqstaus s2 =
(qqstaus)enum.
parse
(typeof
(qqstaus)
, input)
; console.
writeline
("您選則的狀態是"
, s2)
;break
;case
"3":
qqstaus s3 =
(qqstaus)enum.
parse
(typeof
(qqstaus)
, input)
; console.
writeline
("您選則的狀態是"
, s3)
;break
;case
"4":
qqstaus s4 =
(qqstaus)enum.
parse
(typeof
(qqstaus)
, input)
; console.
writeline
("您選則的狀態是"
, s4)
;break;}
console.
readkey()
;}}}
namespace _08
public
enum gender
class
program
}}
c 學習之路(第四天)
溫習一下記憶體分布模型 c 在執行 的時候。將記憶體大致劃分為4個區域 區 文字區 存放 的 二進位制 作業系統管理 全域性區 存放全域性變數和靜態變數 堆 由程式設計師分配釋放 棧 作業系統分配釋放 靜態成員是指宣告為static的類成員在類的範圍內所有物件共享某個資料。靜態成員函式只能訪問靜態資...
自學 python 的第四天
雖然今天與第三天隔了一段時間,但我並沒有對 python 的好感度降低.好了,如果現在要計算乙個字串的長度,該如何計算呢?其實,可以用 for 迴圈,怎麼寫呢?s1 hello sir len 0 for i in s1 len 1 print len 9 s2 hello jason.length...
python成長之路 第四天
內建函式 callable 檢視物件是否能被呼叫 物件是函式的話能被呼叫 callable def f1 pass f2 a print callable f1 print callable f2 chr 將ascii碼轉換成對應的字元 ord 相反 print chr 65 print ord b...