-
Notifications
You must be signed in to change notification settings - Fork 350
/
access-attribute.cpp
50 lines (48 loc) · 1.05 KB
/
access-attribute.cpp
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
39
40
41
42
43
44
45
46
47
48
49
50
#include <iostream>
#include <cstring>
class Student
{
private:
char name[4];
int born;
bool male;
public:
void setName(const char * s)
{
if (s == NULL)
{
std::cerr << "The input is NULL." << std::endl;
return;
}
size_t len = sizeof(name) - 1;
strncpy(name, s, len);
name[len] = '\0';
}
void setBorn(int b)
{
if (b >= 1990 && b <= 2020 )
born = b;
else
std::cerr << "The input b is " << b << ", and should be in [1990, 2020]." << std::endl;
}
void setGender(bool isMale)
{
male = isMale;
}
void printInfo()
{
std::cout << "Name: " << name << std::endl;
std::cout << "Born in " << born << std::endl;
std::cout << "Gender: " << (male ? "Male" : "Female") << std::endl;
}
};
int main()
{
Student yu;
yu.setName("Yu");
yu.setBorn(2000);
yu.setGender(true);
yu.born = 2001; // you cannot access a private member
yu.printInfo();
return 0;
}