?? c13_12.cpp
字號:
//main.cpp,類MyString的使用
#include <iostream >
#include "mystring.h"
using namespace std;
int main()
{
CMyString str1("hello"),str2("every one");
cout <<"str1 是: ";
str1.Display();
cout <<endl;
cout <<"str2 是: ";
str2.Display();
cout <<endl;
CMyString str3;
cout <<"str3 是: ";
str3.Display();
cout <<endl;
return 0;
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -