C/C++ C2679 二元“<<”: 没有找到接受“XXX”类型的右操作数的运算符(或没有可接受的转换)
摘要:今天在做一个C++项目时遇到了如下问题: 找了好久的百度,结果发现只要把这段报错的程序换一下位置,放到运算符重载函数的下面就可以了,因为编译器是按顺序执行的。。。 还有一种情况是,运算符重载函数的参数前要加const:
阅读全文
posted @
2023-10-21 21:09
wshidaboss
阅读(520)
推荐(0) 编辑
C/C++项目实战-推箱子小游戏
摘要:#include <graphics.h> #include <iostream> #include <Windows.h> #include <string> #include <conio.h> using namespace std; #define LINE 9 //行数 #define C
阅读全文
posted @
2023-10-07 20:37
wshidaboss
阅读(349)
推荐(1) 编辑