C 流的粗略運用

2021-06-09 21:39:24 字數 696 閱讀 2822

/* 

* file: main.cpp

* author: vicky.h

* email: [email protected]

*/#include #include #include #include class a

a(const char* name, short age) : age(age)

private:

char name[21];

short age;

};std::ostream& operator<<(std::ostream& os, const a& ref)

std::istream& operator>>(std::istream& is, a& ref)

/* *

*/int main(void)

lily

25---------------------------

string

99test

123---------------------------

vicky

25input a just like:

vicky

25ooxx

1002

ooxx

1002

---------------------------

C 記憶體分配粗略概覽

尾語在c 記憶體分配方面,會見到很多操作 new delete new delete operator new operator delete malloc free stl裡的 allocator deallocator,甚至linux核心中的 slab allocator kmalloc vma...

c語言運用

1.5位運動員參加了10公尺臺跳水比賽,有人讓他們 比賽結果 a選手說 b第二,我第三 b選手說 我第二,e第四 c選手說 我第一,d第二 d選手說 c最後,我第三 e選手說 我第四,a第一 比賽結束後,每位選手都說對了一半,請程式設計確定比賽的名次。define crt secure no war...

C 指標運用

前提 計算機裡,記憶體調取變數,需要知道變數的實體地址,相當於現實生活中的地標,當鎖定地標之後,程序從記憶體呼叫變數時才能做到精確無誤。而我們指標就提供了地標值,哲學上通俗的說,在一定時間內地標值精確的代表了一棟房子,我們可以說當我們說起地標值,就相當於說起了房子,當我們說起了房子,也就是地標值。指...