- 论坛徽章:
- 0
|
本帖最后由 csoapy 于 2012-04-01 15:24 编辑
谢谢楼上两位,总算明白了原因。
就是D is a kind of B, but a pointer to D is not a kind of a pointer to B.
也就是,指针就是指针,无继承关系。不能说一种指针是另一种指针,即使它们指向的类是继承关系。
Test()的原意是,操作ICommand * & pCommand,然后再把pCommand值空。所以要传引用,或者二级指针,但是都通不过。一时还没想出来该怎么办,只想在Test()中delete 该指针,然后值空。作了如下修改,但仍旧通不过。还是cannot convert parameter 1 from 'ICommand *' to 'ICommand *&',也许是我还是没明白?
- #include <list>
- class ICommand{};
- class CSession : public ICommand{};
- void Test(ICommand * & pCommand){delete pCommand; pCommand = NULL;}
- int main(int argc, char *argv[])
- {
- ICommand * pCommand = new ICommand();
- CSession * pSession = new CSession();
- std::list<ICommand*> commands; commands.push_back(pCommand);
- std::list<CSession*> sessions; sessions.push_back(pSession);
- Test(*commands.begin());
- ICommand *p = dynamic_cast<ICommand*>(*sessions.begin());
- Test(p);
- sessions.push_back(new CSession());
- Test(dynamic_cast<ICommand*>(*sessions.begin())); // cannot convert parameter 1 from 'ICommand *' to 'ICommand *&'
- return 0;
- }
复制代码 |
|