-
字符串的一些用法查看全部
-
初始化列表使用查看全部
-
封装的好处查看全部
-
双引号的字符串之间通过加号连接是非法的查看全部
-
堆里面实例化对象是以指针的形式查看全部
-
访问限定符,主要用的是public,private,和C一样查看全部
-
栈区:int x = 0;int *p = NULL; 堆区:int *p = new int [20]查看全部
-
内存分区查看全部
-
对象以堆和栈访问数据成员和成员函数的不同查看全部
-
string的常用操作查看全部
-
初始化string对象的方式查看全部
-
#include<string>查看全部
-
C++中main要返回一个int值,不能设置为void型。查看全部
-
#include <iostream> #include <stdlib.h> using namespace std; class Coordinate { public: int x; //定义成员变量x、y int y; void printX() //定义成员方法 printX()、printY() { cout << x << endl; } void printY() { cout << y << endl; } }; //分号 int main(void) { Coordinate coor; //从栈实例化 coor.x = 10; coor.y = 20; coor.printX(); coor.printY(); Coordinate *p = new Coordinate(); //从堆实例化 if(NULL == p) { //failed return 0; } p->x = 100; p->y = 200; p->printX(); p->printY(); delete p; //释放内存 p == NULL; system("pause"); return 0; }查看全部
-
析构函数不允许添加任何的参数查看全部
举报
0/150
提交
取消