update dir

This commit is contained in:
light-city
2019-07-26 20:02:15 +08:00
parent bf8b7ef7ff
commit 2a31430190
21 changed files with 689 additions and 0 deletions

25
struct/struct_func.cpp Normal file
View File

@@ -0,0 +1,25 @@
#include<iostream>
#include<stdio.h>
struct Base {
int v1;
// private: //error!
int v3;
public: //显示声明public
int v2;
void print(){
printf("%s\n","hello world");
};
};
int main() {
struct Base base1; //ok
Base base2; //ok
Base base;
base.v1=1;
base.v3=2;
base.print();
printf("%d\n",base.v1);
printf("%d\n",base.v3);
return 0;
}