我在尝试为 C++ 上课时遇到了一些问题。这是我的头文件.h:
#include <iostream>
#include <string>
#ifndef MESSAGES__H__
#define MESSAGES__H__
class Message
{
public:
Message(std::string recipient, std::string sender);
void append(std::string text);
std::string to_string() const;
void print() const;
private:
std::string recipient;
std::string sender;
std::string message;
std::string text_input;
char* timestamp;
};
#endif
当我运行 main 方法时, getline(cin,) 给了我一些错误信息:
int main()
{
vector <Message*> message_list;
Message* message1 = new Message("Student1", "Gabriel");
cout << "Enter message text line, enter . on new line to finish: " << endl;
while(getline(cin, text_input))
{
}
}
getline 方法没有给我重载函数的实例。此外,从同一行开始, text_input 显示标识符未定义。我以为我已经在 .h 类中声明了?
提前致谢。
更新部分
现在所有错误都已修复:
vector <Message*> message_list;
Message* message1 = new Message("Saiful", "Gabriel");
cout << "Enter message text line, enter . on new line to finish: " << endl;
while(getline(cin, message1->get_text_input()))
{
if(message1->get_text_input() == ("."))
{
break;
}
else
{
message1->append(message1->get_text_input());
}
}
在while循环内,一次“。” 在新行的开头检测到,它应该会停止。但是,无论我输入多少次“。” 在新行,它只是不断提示。有人知道为什么吗?