我想用C++讀取文件的內容。即時通訊使用ifstream的,但這裏有一個錯誤在編譯:C++ ifstream類型錯誤
代碼:
#include <Python.h>
#include <iostream>
#include <fstream>
using namespace std;
ifstream script;
script.open("main.py");
const char *programm;
if (script.is_open()) {
while (!script.eof()) {
script >> programm;
}
}
script.close();
和錯誤:
main.cpp:8:1: error: 'script' does not name a type
script.open("main.py");
^
main.cpp:10:1: error: expected unqualified-id before 'if'
if (script.is_open()) {
^
我希望你能幫助我,謝謝!
你需要把你的操作放到一個函數中! – billz
CAn你顯示代碼我必須做什麼?即時通訊不是專業人士,所以我不知道你的意思是什麼 – Tekkzz
你的主要功能在哪裏? –