第五章陣列與c++標準庫類模板vector
1.常量const int a=0; 立即初始化
不能const inta; a=0;
2.字元陣列可以用字串文本來初始化
char string=」first」;
等價於char string=;
3. #include
setprecision( n ) 設顯示有效數字為n位
setw( n ) 設域寬為n個字元
4.氣泡排序
#include using namespace std;
void bubblesort(int a,int n)
} }}void main()
; bubblesort(a,5);
for(int m=0;m<5;m++)
cout<5.c++標準庫類模板vector
預設乙個整型vector物件的所有元素都=0
#include #include using namespace std;
//輸入vector
void inputvector(vector &array)
//輸出vector
void outputvector(const vector &array)
6.陣列反轉
void reverse(int arr,int n)
cout<<"最大值"
第五章 標準I O庫
1.fwide函式 用於設定流的定向。int fwide file fp,int mode 若流是寬定向,返回正值 是位元組定向,返回負值 是未定向,返回0。如若mode是負值,則函式試圖使指定的流是位元組定向的 如果mode是正值,則函式試圖使制定的流是寬定向的 若mode引數值為0,函式不試圖設...
第五章 標準I O庫
本章用於解析c語言標準i o庫,之所以在unix類系統的程式設計中會介紹c語言標準庫,主要是因為unix和c之間具有密不可分的關係。標準i o庫相比於作業系統的i o庫,具有更高的效率和可移植性,前者是因為標準i o庫提供了緩衝和塊長度優化功能,後者是因為使用標準i o庫的 不僅能在各unix系統上...
APUE筆記 第五章 標準I O庫
2.流和相關函式 3.格式化i o 4.fileno 函式 5.tmpnam 和tmpfile 函式 標準i o庫是在系統呼叫函式基礎上構造的。ansi c要求下列快取特徵 1 當且僅當標準輸入和標準輸出並不涉及互動作用裝置時,它們才是全快取的。2 標準出錯決不會是全快取的。1.1全快取 在這種情況...