MFC:std::string 与 CString?
将 C++ 与 MFC 结合使用。由于具有 C# 背景,我通常只使用 string 来表示所有字符串。我将它们用于类成员、方法参数和方法返回值。 现在,在 C++ 中,…
C++如何计算字符串在数据中出现的次数
我想测量以下两件事: 逗号出现在 a 中的次数 std::std,例如如果 str ="1,2,3,4,1,2," 如果出现上述情况,则 str.Count(',') 返回我 6 string 第二件…
在 C++ 中比较 std::string 与常量与比较 char 数组与常量
我正在尝试进行一些文本冒险来掌握 C++。 cin >> keyboard1 if ((keyboard1 == "inv")inventory(inv) 如果 Keyboard1 是字符串,则这将起作用,但…
在 boost 中,如何将 boost 迭代器传递给以某种方式转换为 std::string 的函数
请参阅以下代码末尾的注释作为具体问题。 std::string s("my sample string \"with quotes\"") boost::escaped_list_separator<char> els(""," ",…
std::string 没有空闲存储内存分配
非常相似的问题 我有一个与如何使用 glibc 的字符串实现在堆栈上分配 std::string ? 但我认为值得再次询问。 我想要一个带有本地存储的 std::string …
STL basic_string 长度(含空字符)
为什么您可以在 std::basic_string 中插入 '\0' 字符并且 .length() 方法不受影响,但如果您调用 char_traits::length(str.c_str())< /code> 你得…
如何使用“”初始化 std::string?
我在使用 "" (即空字符串)初始化 std::string 变量时遇到问题。它会导致以前有效的代码出现奇怪的行为。下列说法错误的是? std::string operationa…
将 cout 输出输出到 std::string
我有以下 cout 语句。我使用 char 数组,因为我必须传递给 vsnprintf 来转换变量参数列表并存储在 Msg 中。 有什么方法可以将 cout 输出到 C++ std::s…
STD::string 作为动态分配对象的成员参数
我希望动态分配对象集(可以是数百个)。这些对象的一部分是文本字段。因为 std::string 提供了很好的字符串操作,所以我更喜欢使用 std:string 类型…
为什么在包含时会出现编译器错误?并使用 std::basic_string?
当我尝试编译以下代码时: #include <string.h> using namespace std typedef std::basic_string<char> foostring foostring foo = "foo" 出…
避免在没有原始指针的情况下复制映射的键
每次在键为 std::string 的 std::map 中插入一对时,它都会生成两个副本。您可以避免使用原始指针,但它是异常不安全的。有没有办法使用智能指针而不…
为什么在 std 字符串中间设置 null 没有任何效果
考虑到 #include <string> #include <iostream> int main() { /* hello 5 hel 3 */ char a[] = "hello" std::cout << a << std::endl…
Visual Studio 2010 使用 std::string 编译错误?
所以这可能是我最近看到的最奇怪的事情,我很好奇这是怎么发生的。编译器给了我一个错误,指出 std::string 在用作返回类型时未定义,但在类方法中用…