标题:请问,类中定义的嵌套类如何调用?
取消只看楼主
全世界安静
Rank: 2
等 级:论坛游民
帖 子:104
专家分:65
注 册:2012-6-4
结帖率:31.58%
 问题点数:0 回复次数:0 
请问,类中定义的嵌套类如何调用?
class  out
{
public:
 int a,b;
 class in
{
 public:
   int a,b;
   in(int x,int y)
    {
      a=x;b=y;
    }
}
 out(int x,int y)
{
  a=x;b=y;
}
in inner;
}
void main()
{
test my_test(1,2);
my_test.inner(3,4);
}
请问错误出在哪里?如何调用嵌套类?
搜索更多相关主题的帖子: 如何 inner public void 
2012-06-13 13:31



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-371452-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.234878 second(s), 8 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved