-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path14.cpp
49 lines (43 loc) · 771 Bytes
/
14.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
#include <iostream>
#include <stdlib.h>
#include <time.h>
#include <string>
using std::cout;
using std::endl;
using std::string;
using std::to_string;
// class numbered{
// public:
// numbered(): mysn(to_string(rand())) {}
// string get_mysn() { return mysn; }
// private:
// string mysn;
// };
class numbered{
public:
static int unique;
numbered() { ++ unique; }
string get_mysn() { return to_string(unique); }
private:
string mysn;
};
void f(numbered s){
cout << s.get_mysn() << endl;
}
int numbered::unique = 10;
/*
string randNum(unsigned int seed) {
srand(seed);
auto num = rand();
return std::to_string(num);
}
*/
int main(){
// for(auto i = 1; i < 10; ++i){
// cout << randNum(i) << endl;
// }
numbered a, b = a, c = b;
f(a);
f(b);
f(c);
}