- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
这是一项家庭作业,只为所有想知道的人准备。
我正在编写一个词汇翻译器(英语 -> 德语,反之亦然)并且应该将用户所做的一切保存到文件中。很简单。
这是代码:
std::string file_name(user_name + ".reg");
std::ifstream file(file_name.c_str(), std::ios::binary | std::ios::ate);
// At this point, we have already verified the file exists. This shouldn't ever throw!
// Possible scenario: user deletes file between calls.
assert( file.is_open() );
// Get the length of the file and reset the seek.
size_t length = file.tellg();
file.seekg(0, std::ios::beg);
// Create and write to the buffer.
char *buffer = new char[length];
file.read(buffer, length);
file.close();
// Find the last comma, after which comes the current dictionary.
std::string strBuffer = buffer;
size_t position = strBuffer.find_last_of(',') + 1;
curr_dict_ = strBuffer.substr(position);
// Start the trainer; import the dictionary.
trainer_.reset( new Trainer(curr_dict_.c_str()) );
显然,问题是应该存储我的字典值的 curr_dict_。例如,我的老师有一个名为 10WS_PG2_P4_de_en_gefuehle.txt
的字典文件。 Trainer 像这样导入字典文件的全部内容:
std::string s_word_de;
std::string s_word_en;
std::string s_discard;
std::string s_count;
int i_word;
std::ifstream in(dictionaryDescriptor);
if( in.is_open() )
{
getline(in, s_discard); // Discard first line.
while( in >> i_word &&
getline(in, s_word_de, '<') &&
getline(in, s_discard, '>') &&
getline(in, s_word_en, '(') &&
getline(in, s_count, ')') )
{
dict_.push_back(NumPair(s_word_de.c_str(), s_word_en.c_str(), Utility::lexical_cast<int, std::string>(s_count)));
}
}
else
std::cout << dictionaryDescriptor;
单行是这样写的
1 überglücklich <-> blissful (0)
curr_dict_ 似乎可以正常导入,但是当输出它时,我在文件末尾得到了一大堆垃圾字符!
我什至使用了十六进制编辑器来确保包含字典的文件末尾没有多余的字符。它没有。
顶部代码正在读取字典的注册表文件:
基督教.reg
Christian,abc123,10WS_PG2_P4_de_en_gefuehle.txt
我做错了什么?
最佳答案
read
函数(如 file.read(buffer, length);
行)不会以空字符终止字符缓冲区。您需要手动执行此操作(再分配一个字符,并在 read
ing 之后将 nul 放在第 gcount
位置)。
关于c++ - 字符串在转换为 c_str() 后变得乱七八糟,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4379518/
我正在尝试比较 libpqxx c_str值(value)观。 如果我尝试直接比较它们,result1[0][0].c_str() == result2[0][0].c_str(),例如,它们不会 r
const char *c_str(); c_str()函数返回一个指向正规C字符串的指针, 内容与本string串相同. c_str()就是把string类对象转换成和c兼容的char *类型。
这个问题在这里已经有了答案: C++ strange behavior with string's c_str() function (2 个答案) 关闭 8 年前。 我得到了以下程序: std::
我想创建一个进程来读取一些串口。但是,用户将来应该能够更改程序所在的路径。这就是为什么我想包含变量 BasePathFile,它在类的初始化过程中设置为默认值: const std::string B
我的 C++ 标准草案拷贝(标记为“ISO/IEC JTC1 SC22 WG21 N3690Date: 2013-05-15") 对 basic_string::c_str() 和 basic_str
我知道 C++11 对 string 做了很多改变。其中最重要的是要求它在内存中线性布局。 在 C++11 之前,对 string::c_str 的调用将返回一个 const char*,但是否保证是
const char* getOutPath() { return classVarStr.c_str(); } 我有之前的功能, 当我收到返回值时有一些奇怪的东西, 我得到完整路径但不包括第一个
这个问题在这里已经有了答案: assigning string::c_str() to a const char* when the string goes out of scope (5 个答案)
如果使用 g++ 和 clang++,我得到 ++my string==my string##my string--。而MSVC和Intel Compiler,则是++==my string##my
我正在做一个 C++ 作业,需要用户输入一个表达式(例如:2 * (6-1) + 2 )并输出结果。除非在用户输入中遇到空格,否则一切正常。 需要将用户输入传递给以下方法; double Calcul
这个问题在这里已经有了答案: Why don't the std::fstream classes take a std::string? (10 个答案) 关闭 8 年前。 我正在阅读《C++ P
这是我在网上找到的一个小型图书馆: const char* GetHandStateBrief(const PostFlopState* state) { static std::ostrin
这个代码片段是正确的还是会导致未定义的行为? std::string s; assert(strlen(s.c_str())==0); 如果不是undefined behavior,上面的断言会通过吗
我已经用普通的 ifstreams 和我正在使用的当前 boost:iostream 尝试了以下代码,两者都有相同的结果。 它旨在将文件从 physfs 加载到内存中,然后将其传递给处理程序进行处理(
我有下面的代码片段。我期待输出将是 mystring,但奇怪的是它输出垃圾字符。 #include #include using namespace std; int main(int argc,
考虑以下函数: void f(const char* str); 假设我想使用 stringstream 生成一个字符串并将其传递给这个函数。如果我想在一个语句中做到这一点,我可能会尝试: f((st
我的理解是 c_str 将一个可能会或可能不会以 null 结尾的字符串转换为以 null 结尾的字符串。 这是真的吗?可以举一些例子吗? 最佳答案 c_str 返回一个 const char*,它指
有时我需要从 C 调用 C++ 对象。经过一些搜索,我知道我可以使用 extern "C" 来包装一些可以从 C 调用的接口(interface)。这是我的代码: #include #include
所以我有一个类 class MySuperClass { public: std::string buffer; }; 并希望将buffer打印到std::cout。 以下是有关从文件填充字符串的一
我从this answer知道字符串文字是静态分配的。但是下面的字符串连接也可以安全使用吗? void someFunction(std::string& foo) { functionTak
我是一名优秀的程序员,十分优秀!