创建了一个vc ++空项目。创建了一个简单的udp服务器,可以正常工作。开始为文件输出添加代码。添加#include <iostream>
和/或#include <fstream>
会产生很多错误。还发现了<cmath>
中的大部分错误。第一个错误是 missing '{' before '<'
此外,using namespace cmd;
告诉我using
不是类型名称。
我尝试了许多在线建议,包括:
.c
和.cpp
更改为原来的版本。<cmath>
在那儿。只是发布错误。)我的代码:
//* Includes */
#include <stdio.h>
#include <winsock2.h>
#include <iostream>
#include <fstream>
using namespace std;
#pragma comment(lib,"ws2_32.lib")
...
// File output test code
pos_out.open("hspo001.csv");
pos_out << "index,time,type,group,j1,j2,j3,j4,j5,j6,j7,j8,j9\n";
pos_out.close();
我希望为iostream
和fstream
添加include不会阻止程序编译,并且我希望cmath
不会出错。