义气魔镜

文章
2
资源
0
加入时间
3年0月20天

(转)20个非常有用的Java程序片段

转自:http://coolshell.cn/articles/889.html1、 字符串有整型的相互转换String a = String.valueOf(2); //integer to numeric string int i = Integer.parseInt(a); //numeric string to an int 2、 向文件末尾添加内容BufferedWriter ou

指针地址与指针指向的地址

q表示所指向的地址,&q表示取了指针本身的地址。int main(){ int a = 4;int* q = &a;cout << &a << endl;cout << q << endl;cout << &q << endl;}