关于我在C++的一些小错误

关于我在C++的一些小错误,第1张

student*pt=std;//std是对象数组;

cout<<(*pt+1).score; //score声明为public; × 编译会显示 [Error] no match for 'operator+' (operand types are 'student' and 'int')

√ cout<<(*++pt).score;

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/langs/607510.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-04-14
下一篇 2022-04-14

发表评论

登录后才能评论

评论列表(0条)

保存