FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
note/examples/cpp_classes.vixnote at main · vixcpp/note · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
vixcpp
/
note
Public
Notifications
You must be signed in to change notification settings
Fork
0
Star
1
Code
Issues
0
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
note
/
examples
/
cpp_classes.vixnote
Copy path
More file actions
More file actions
Latest commit
History
History
History
38 lines (30 loc) · 649 Bytes
Breadcrumbs
note
/
examples
/
cpp_classes.vixnote
Copy path
File metadata and controls
38 lines (30 loc) · 649 Bytes
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
<!-- vixnote:cell id="intro" kind="markdown" -->
# Classes in C++
A class groups data and behavior together.
<!-- vixnote:cell id="class-cpp" kind="cpp" title="class example" -->
```cpp
#include <iostream>
#include <string>
class Greeter
{
public:
explicit Greeter(std::string name)
: name_(std::move(name))
{
}
void say_hello() const
{
std::cout << "Hello, " << name_ << std::endl;
}
private:
std::string name_;
};
int main()
{
Greeter greeter("Vix Note");
greeter.say_hello();
return 0;
}
```
<!-- vixnote:cell id="takeaway" kind="markdown" -->
Classes are useful when data and behavior should live together.
Back
|
FazBrowse Home
|
New Git URL