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

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 }

  • 上一篇: python做预测模型
  • 下一篇: 舅舅家的电脑
  • 版权声明


    相关文章:

  • python做预测模型2024-11-04 08:30:01
  • phython基础语法教程2024-11-04 08:30:01
  • 平滑处理设置多少最好2024-11-04 08:30:01
  • 去耦和旁路电容的区别2024-11-04 08:30:01
  • redisson集群模式2024-11-04 08:30:01
  • 舅舅家的电脑2024-11-04 08:30:01
  • pycharm中出现no module named2024-11-04 08:30:01
  • c语言指针的指针作用2024-11-04 08:30:01
  • 黑客必备工具2024-11-04 08:30:01
  • 王码五笔输入法86版的字根全面吗?2024-11-04 08:30:01