代码拉取完成,页面将自动刷新
/*
* File: main.cpp
*
* Created on 2013年7月1日, 下午4:03
*/
#include <cstdlib>
#include <string>
#include <iostream>
#include "CSVFile.h"
using namespace std;
int main(int argc, char** argv) {
CSVFile file;
file.Load("test.csv");
file.Write<std::string>(0, 0, "hello", true);
file.Write<int>(1, 1, 100);
file.Write<float>(2, 2, 100.1);
cout << file.Read<std::string>(0, 0) << std::endl;
cout << file.Read<int>(1, 1) << std::endl;
cout << file.Read<string>(2, 2) << std::endl;
int row, col;
file.GetRowCol(row, col);
cout << "max_row=" << row << " " << "max_col=" << col << endl;
file.Save();
return 0;
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。