C++
qq_25054853
这个作者很懒,什么都没留下…
展开
-
C++笔记随笔
#include <iostream> using namespace std; void test(int a) { } //class Person //{ //public: // static int m_test; // int m_age; // void run() // { // // }; // // //}; int main() { test(20); cout << sizeof(int) << endl;//F9设置断点,F5调试 .原创 2021-02-17 01:54:59 · 165 阅读 · 1 评论 -
C++ 关于命名空间namespace的应用
#include <iostream> //自定义命名空间 #if 1 using namespace std; namespace spaceA { int g_a = 10; namespace spaceB { struct teacher { int id; char name[64]; }; } } /* 结构体? typedef struct student { }student_t; */ int main(void) { .原创 2021-02-16 12:42:30 · 138 阅读 · 1 评论 -
VS2019 C++创建一个简单项目demo
#include <iostream> #include <stdlib.h> using namespace std; #define OUTPUT_HELLO_WORLD "Hello,world" #define OUTPUT_HELLO_CHINA "Hello,china" #define OUTPUT_HELLO_EVERYONE "Hello,everyone" int main() { int n; cout << "输入一个数字:0,1,...原创 2021-02-15 11:21:01 · 832 阅读 · 1 评论