我是靠谱客的博主 健忘皮皮虾,最近开发中收集的这篇文章主要介绍【bug01】error: no match for ‘operator=‘ (operand types are ‘std::vector<int>‘ and ‘int‘)|,觉得挺不错的,现在分享给大家,希望可以做个参考。
概述
检查[]和()是否弄混了
//创建100个vector数组 应该用vector数组给v赋值
vector<int> v[100];
//创建一个有100个int元素的vector数组
vector<int> v(100);
参考链接:https://stackoverflow.com/questions/44455669/no-match-for-operator-operand-type-are-stdvectorint-and-int
最后
以上就是健忘皮皮虾为你收集整理的【bug01】error: no match for ‘operator=‘ (operand types are ‘std::vector<int>‘ and ‘int‘)|的全部内容,希望文章能够帮你解决【bug01】error: no match for ‘operator=‘ (operand types are ‘std::vector<int>‘ and ‘int‘)|所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复