2
0
mirror of https://github.com/chubin/cheat.sheets synced 2024-11-09 07:10:36 +00:00
cheat.sheets/sheets/_cpp/struct

22 lines
525 B
Plaintext
Raw Normal View History

2017-07-18 00:58:18 +00:00
// 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"