标签:
CH1 更好的C
float x = 123.456, y = 12345;
//cout.precision(2); //显示两个有效值,其他是科学计数法
//cout << x << " " << y << endl;
?
//cout.setf(ios::showpoint);//显示末尾的0
//cout << x << " " << y << endl;
?
cout.setf(ios::showpos);//显示符号
cout << x << " " << y << endl;
Printf("%p",s);
Cout<<"address: "<<&s;
?
CH2 指针
Const char *p; 说明 *p是常量,不能改变。
Char* const p; 说明,p是常量,不能改变。
依据看 * 的位置。
int **a;
a = new int*[3];//行
????for(int i = 0; i < 4; ++i)
????{
????????a[i] = new int[4];//列
????}
delete[] a;
?
?
????int a[][4] = {{1,2,3},{4,5,6},{7,8,9}};
????int (*p)[4] = a;
?
????//p[i] == *(p+i);
????//p[i][j] == *(p[i]+j) == *(*(p+i)+j);
?
?
????size_t totals = sizeof(a);//整个字节数
????size_t totalcols = sizeof(a[0]);//整个列字节数
????size_t rows = sizeof(a)/sizeof(a[0]);
????size_t cols = sizeof(a[0])/sizeof(a[0][0]);
????for(int i = 0; i < rows; ++i)
????{
????????for(int j = 0; j < cols; ++j)
????????????cout << p[i][j] << " ";
????????cout <<endl;
????}
????cout << rows << " " << cols << endl;
指向非成员函数的指针:
#include <Windows.h>
#include <iostream>
?
using namespace std;
?
int (*fp)(int,int);//全局指针变量
void (*farray[])(void); //可以定义在主函数外部,也可以在内部定义。 函数指针数组
int Max(int a, int b)
{
????if(a > b)
????????return a;
????else
???? return b;
}
int main()
{
????fp = Max;
????int a = fp(1,2);
????cout << a << endl;
return 0;
}
?
指向成员函数的指针:
#include <Windows.h>
#include <iostream>
?
using namespace std;
?
class C
{
public:
????void f(){cout << "C::f \n";};
????void g(){cout << "C::g \n";};
????int Max(int a, int b)
{
????if(a > b)
????????return a;
????else
???? return b;
}
};
?
int main()
{
C c;
void (C::*pmf)() = &C::f; //定义指向成员函数的指针
(c.*pmf)();//指向成员函数的指针,与非成员函数的指针相比,语法上有点小变化,多了 对象.*
pmf = &C::g;
(c.*pmf)();
?
int (C::*fp)(int,int) = &C::Max;
int aa = (c.*fp)(3,4);
cout << aa << endl;
return 0;
}
指向成员函数的指针数组
采用与源类相似的类实现,就是重新定义一个与源类相似的类,然后重新包装一下。
?
CH3 预处理器
#define DEBUG 1
?
int main()
{
int i = 2;
#if DEBUG
cout << "debugmod" << endl;
#endif
return 0;
}
?
下面这句话也可以实现上面的功能
?
#ifdef _DEBUG
cout << "debugmod" << endl;
#endif // _DEBUG
?
?
要想将新的C++代码与旧的C代码混合编程,需要加下面的语句
extern "C" void f(); //f()在C环境下被编译
回车 \r 换行 \n 回退 \b 警示 \a
?
?
?
CH4 C标准库之一 : 面向合格的程序员
1、<ctype.h>
常见的函数: is系列。Eg : isupper(); islower(); isspcace() 等。
char a = ‘A‘;
int b = isalpha(a);
实例:
?
标签:
原文地址:http://www.cnblogs.com/zhuxuekui/p/4199636.html