我的c ++程序正在xCode上运行。程序的一部分是搜索计算机上的文件,然后使用该文件将值存储到数组中。在xCode上一切正常,但是当我将文件.cpp .h .txt移入服务器或ssh时,似乎无法正常工作。
这是我的代码的片段:
case 'W':
if(heap.capacity == 0)
cout<< "Sorry!!! It cannot be done. Please initialize the heap first.";
else{
file.open("/Users/mbojo/Downloads/HEAPinput2.txt");
int line;
int count = 0;
while(file>>line)
count++;
file.close();
heap.capacity = count;
cout<< "COMMAND: " << choice << "\n" << "The capacity is "<<
heap.capacity << "\nSize is " << heap.size<<endl;
}
break;
在ssh / server中我需要更改可读取文件的任何内容吗?