SIGN IN SIGN UP
#include <iostream>
#include <stdio.h>
2019-07-26 20:02:15 +08:00
struct Base {
int v1;
// private: //error!
int v3;
public: // 显示声明public
int v2;
void print() { printf("%s\n", "hello world"); };
2019-07-26 20:02:15 +08:00
};
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;
2019-07-26 20:02:15 +08:00
}