我在我的.cpp文件中得到了一小段代碼的運行前錯誤。C++,Visual Studio快速獲取奇怪的運行前錯誤
iFileName
突出顯示並且顯示「Error:this declaration has no storage class or instance type。」。
iFileName
和iWidth
之間的逗號說:「錯誤:預期的聲明」
右括號說「錯誤:預期的聲明」
#include <iostream>
#include <fstream>
#include "BMPCanvas.h"
#include "Fractal.h"
using namespace std;
BMPCanvas(string iFileName, int iWidth, int iHeight){
filename = iFileName;
width = iWidth;
height = iHeight;
}
有誰知道爲什麼我會得到有錯誤?
BMPCanvas :: BMPCanvas? – willll
'#include'? –
@willll當我這樣做,錯誤消失,但'fileName'成爲「錯誤:標識符」fileName「未定義」 – user2726232