2015 1 9 知識總結

2021-06-28 03:05:54 字數 1250 閱讀 8804

void function(int &a,int &b)

int main()

要點:void (*p) (int &,int &)一句,指標指向函式要注意引數的匹配!

int max=0x80000000;

int min=0x7fffffff;

以十進位制來表示就是-2147483468~+2147483467

#includeusing namespace std;

struct b;//因為a中要用到b,所以需要先宣告b

struct a

;struct b

;int main()

*aa 和 *bb之間互相指,也就是把a和b的資料部分交叉起來

備註——下面的建立失敗了,原因是互相引用的不是指標而是乙個元素,不能通過編譯。

struct b;

struct a

;struct b

;

typedef int (*funcptr)(int);

int donothing(int a);

int main()

這個typedef如果剛接觸有些不好理解,下面的**則是乙個typedef定義指向函式的指標的標準格式

typedef int*/*int、char、struct、struct * ...*/ data_type;

typedef data_type (*funcptr)(int);

data_type donothing(int a);

int main()

注意typedef並非直接把文字替換了,這裡const不會深入typedef,而是直接把p定義為const

//關於const 和指標的一些問題參見2015-1-6 const和指標,因為const int* p和 int * const p是不同的

typedef char* charp;

char str="hello";

const charp p=str;

charp const q=str;

int main()

int *p=(int *)0x12345678;

SQL知識總結

use tablename 要操作的資料庫名 select logicalfilename tablename log 日誌檔名 maxminutes 10,limit on time allowed to wrap log.newsize 1 你想設定的日誌檔案的大小 m setup initia...

UML知識總結

uml從組成結構上講是由以下三大部分組成。第一部分是指包含uml建模的基本元素 關係和圖構造塊部分。基本建模元素是整個模型的基礎,有時被稱為物件,又可細分為結構性 行為性 分組性 注釋性建模元素。關係是說明多個模型元素在語意上的相關性,並可形成更高層次的語意定義,主要用在結構性和分組性的元素之間。可...

java知識總結

包的訪問控制 子類 同個包內 不同包內 public y y y protect y y n private n n n i o和流 四個抽象類 讀寫位元組 inputstream outputstream 讀寫unicode字元 reader writer iterator arraylist v...