太阳照常升起,也许我们会消失,但我们热爱的许多事物将永远延续。

随风摇摆是一种优秀的能力,而从一而终也是一种可贵的品质,后者可能招致毁灭,却也能够诞生奇迹。喜欢的东西就要去努力争取,这样在我们失败的时候,就可以尽情的埋怨这个时代,而不必恼恨自己。

关于我

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
class Member {
/* data */
private:
string name = "Henry Tseng";
string gender = "M";
unsigned int age = NULL; //UNDEFINED
string university = "CQUPT";
string degree = "M.Sc";
string major = "cs"; //computer science.
string tech_stack[] = {"C++", "Golang", "Python", "more..."};
string email = "'henry#bytecho.net' or 'csthenry#foxmail.com'"; //replace '#' with '@'.
string website = "www.bytecho.net";

public:
ElemType getInfo(){
//...
};
};

本站由字节星球强力驱动!