暑假到了 小弟想说 学学看c#
自学到抽象(abstract)网络找资源学
可是有一个问题 一直想不出来
敢问各位大大此问题(问题太欠嘘 在此sor 想知道ans)
Q:
写了一个 抽象的 person 里面写了几个函式
我再让student继承
之后我在student里面多写了一个函式
叫studentID好了(person里面没有写喔)
最后我在主函式
person ps1 = new student("A123456789"); //建构子建造studentID必须的字串
但是ps1.没显示出可选择studentID
我知道在上面那种宣告方法 指向的位址 只有person的函式
可是有方法能让ps1.studentID()能使用吗??
除了 student s1 = new student("A123456789");
谢谢各位大大的回答!!