-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathtest5.cpp
More file actions
executable file
·58 lines (49 loc) · 826 Bytes
/
test5.cpp
File metadata and controls
executable file
·58 lines (49 loc) · 826 Bytes
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
51
52
53
54
55
56
57
58
#include <iostream>
#include <vector>
#include <string>
class A {
//friend void dosth(A& );
friend void dosth(A);
public :
private :
void show() { std::cout << "in A " << std::endl; }
std::vector<std::string> data;
};
/*
void doanother(std::vector<std::string>* a)
{
// (*a).size() maybe is also ok
a->push_back("haha");
std::cout << "a.size() " << a->size() << std::endl;
}
void dosth(A& a)
{
doanother(&a.data);
}
*/
/*
void doanother(std::vector<std::string>& a)
{
a.push_back("haha");
std::cout << "a.szie() " << a.size() << std::endl;
}
void dosth(A& a)
{
doanother(a.data);
}
*/
void doanother(std::vector<std::string>& a)
{
a.push_back("haha");
std::cout << "a.size() " << a.size() << std::endl;
}
void dosth(A a)
{
doanother(a.data);
}
int main()
{
A a;
dosth(a);
return 0;
}