mirror of
https://github.com/Light-City/CPlusPlusThings.git
synced 2026-02-04 02:54:42 +08:00
support bazel complie this project and format code.
This commit is contained in:
@@ -1,25 +1,24 @@
|
||||
#include<iostream>
|
||||
#include<stdio.h>
|
||||
#include <iostream>
|
||||
#include <stdio.h>
|
||||
|
||||
struct Base {
|
||||
int v1;
|
||||
// private: //error!
|
||||
int v3;
|
||||
public: //显示声明public
|
||||
int v2;
|
||||
void print(){
|
||||
printf("%s\n","hello world");
|
||||
};
|
||||
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;
|
||||
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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user