2
0
mirror of https://github.com/chubin/cheat.sheets synced 2024-11-03 15:40:17 +00:00
cheat.sheets/sheets/_cpp/struct
2018-05-19 20:40:04 +00:00

22 lines
525 B
Plaintext

// structs are like classes, but everything is by default public
// Declaration
ObjectName structName {
// Declaration of variables
int a;
string b;
// Constructor
structName(new_a, new_b) {
a = new_a;
b = new_b;
}
// Implement any public functions below
};
// Accessing PUBLIC variables
ObjectName v = structName(5, "Hello"); // Creates a struct via the constructor
std::cout << v.a << " " << v.b << std::endl; // Prints to console "5 Hello"