e****g 发帖数: 4434 | 1 Studenta can ask live questions, with both voice, video popping up in the
entire classroom screen.
这个studenta是啥,我看学校介绍里的 |
|
c*********n 发帖数: 128 | 2 原来刚刚讨论过了。。。。。。我土了。。。。。。
汗。。。。。。
不过我还是不太明白为什么C++以及其他的OOP语言的设计者们把access control设计成
class based 而不是 object based。
intuitively,正如cynod说的:
“如 Student A, B;
A 应该不能直接读取B的private: score 吧”
Student studentA studentB;
在studentB里就可以修改studentA的private data难道不是一件很危险的事情么? |
|
l***1 发帖数: 22 | 3 比如有一个class
class student
{
int studentID;
float height;
};
studentA student;
然后在运行中,要找出有多少member在studentA里,并且知道它们的名字,类型,得到
它们的指针。
还是老老实实在程序里写出各变量名? |
|