//避免資料庫對同一事物的狀態或種類等具有相同型別不同屬性的進行多欄位控制或表述。例如:性別->男,女;賬號許可權->增,刪,改,查中其中一種或者多種許可權。
public static void main(string args)
public enum weekdays
}public static string findflags(int value)
string tempstr = "";
for (weekdays wd : weekdays.values())
}tempstr = tempstr.equals("") ? string.valueof(value) : tempstr.substring(0, tempstr.length()-1);
return tempstr;
}int mflags = 1<<6;//當前flag
//增加flag
public void addflags(int flags)
//刪除flag
public void clearflags(int flags)
C資料型別對齊規則包含位域
c資料型別對齊規則包含位域 pragma pack n 設定為n位元組對齊 pragma pack push 儲存當前的對齊位元組數 pragma pack pop 還原預設對齊位元組數 vc預設8位元組對齊 1.對於結構體的各個成員,第乙個成員位於偏移為0的位置 2.對於結構體的以後的每個成員的開...
c 型別 判斷 函式 結構體 類
型別 判斷語句 迴圈類,單句類,復合判斷類。迴圈有while for do while 單句及其巢狀有if if else if elseif else 復合有if 簡單說相當於日常生活中的交通工具,你要去不同的地方就要用不同的交通工具,你想要不同的效果,就要用不同的函式 不同型別的函式放在一起,例...
Java包裝類與基本型別進行比較的坑
short packshort 1 short baseshort 1 integer packint 1 int baseint 1 用short的equals 方法與short進行比較 system.out.println packshort.equals baseshort 用 比較short...