当前位置:网站首页 > 技术博客 > 正文

c++结构体简单例子



 1 int main(){  2  3 MyTree *t1 = new MyTree(1);  4 MyTree *t2 ;  5 t2->val = 2;  6 cout<<t1->val<<" "<<t2->val; //输出:1 2  7 t2.val = 3; //error: request for member 'val' in 't2', whitch is of pointer type 'MyTree*' (maybe you meant to use '->' ?)  8 cout<<t2.val; //error: request for member 'val' in 't2', which is of pointer type 'MyTree*' (maybe you mean to use '->' ?  9 return 0; 10 }

  • 上一篇: 爬虫中的url是什么
  • 下一篇: kvm虚拟机下载
  • 版权声明


    相关文章:

  • 爬虫中的url是什么2024-11-04 08:30:01
  • python做预测模型2024-11-04 08:30:01
  • 霍夫圆检测算法2024-11-04 08:30:01
  • fastjson教程2024-11-04 08:30:01
  • c++bitset头文件2024-11-04 08:30:01
  • kvm虚拟机下载2024-11-04 08:30:01
  • 二叉排序树的查找方法2024-11-04 08:30:01
  • 乐高ev3编程设计讲解2024-11-04 08:30:01
  • 装饰模式的定义2024-11-04 08:30:01
  • 舅舅家的电脑2024-11-04 08:30:01