stdstring

stdstring

文章 0 浏览 3

Visual Studio 2010 使用 std::string 编译错误?

所以这可能是我最近看到的最奇怪的事情,我很好奇这是怎么发生的。编译器给了我一个错误,指出 std::string 在用作返回类型时未定义,但在类方法中用…

嘿嘿嘿 2024-10-10 23:45:01 2 0

为什么 std:string + 没有int 给出编译错误?

我们刚刚发现我们的同事认为他可以向 std::string 添加一个整数,并在他的代码中到处使用了这样的操作。 我们没有看到此操作有任何编译器错误,我不明…

只有一腔孤勇 2024-10-09 01:34:57 5 0

std::cout << stringstream.str()->c_str() 不打印任何内容

在一个函数中,得到 unsigned char &amp&amp unsigned char length, void pcap_callback(u_char *args, const struct pcap_pkthdr* pkthdr, const u_…

淡墨 2024-10-06 02:29:32 5 0

连接字符串无法按预期工作

我知道这是一个常见问题,但在寻找参考资料和其他材料时,我没有找到这个问题的明确答案。 考虑以下代码: #include &ltstring&gt // ... // in a met…

心舞飞扬 2024-10-05 04:19:33 8 0

波兰语 std::string 中的字符

我有一个问题。我正在为 Linux 编写一个用波兰语(当然还有波兰语字符)的应用程序,在编译时收到 80 条警告。这些只是“警告:多字符字符常量”和“…

蔚蓝源自深海 2024-10-03 14:56:36 2 0

当您必须将 std::string 作为 char* 传递时, std::string 是否比 char* 更好?

在 最近的问题,我了解到在某些情况下您只需传递 char* 而不是 std::string。我真的很喜欢 string,对于只需要传递不可变字符串的情况,使用 .c_str()…

寄与心 2024-09-30 05:14:41 5 0

是否可以使用 cout 从用户定义类型自动转换为 std::string ?

正如问题中所示,如果我在类中定义一个字符串运算符: class Literal { operator string const () { return toStr () } string toStr () const } 然后…

从﹋此江山别 2024-09-29 04:06:10 4 0

为什么我的 MD5 值打印时带有额外的“f”?人物?

使用 std::string 的 at() 方法时遇到奇怪的问题。我想使用此库计算给定字符串的 md5 哈希值: http://sourceforge.net /项目/libmd5-rfc/文件/ 哈希…

他不在意 2024-09-28 12:01:41 2 0

将 std::string 转换为带有尾随或前导 '\0' 的 LPCSTR

如何将 std::string 转换为 LPCSTR,同时保留 '\0' 字符? 我想在 OPENFILENAME.lpstrFilter 上使用结果,它要求过滤器包含“\0”作为分隔符。 std::s…

心凉怎暖 2024-09-26 20:06:30 2 0

这段代码中的 string::npos 是什么意思?

下面的代码片段中的短语 std::string::npos 是什么意思? found = str.find(str2) if (found != std::string::npos) std::cout &lt&lt "first 'needle…

时光病人 2024-09-25 04:40:35 7 0

如何将 std::string 变量传递到函数中

我有一个 C++ 方法,它接受一个变量,方法签名如下: DLL returnObject** getObject( const std::string folder = "" ) 我尝试传入: const std::stri…

吾家有女初长成 2024-09-25 04:31:55 4 0

包含传递给 lua 的 std::string 的结构

我有使用 swig 的 C++ 代码,它创建一个结构体,将其传递给 lua (本质上是通过引用),并允许操作该结构体,以便在我返回到 C++ 函数后,在 lua 代码…

醉生梦死 2024-09-24 12:01:27 3 0

“无效转换”条件运算符错误

我在这一行中收到编译错误: cout &lt&lt (MenuItems[i].Checkbox ? (MenuItems[i].Value ? txt::mn_yes : txt::mn_no) : MenuItems[i].Value) 错误:…

呢古 2024-09-24 00:42:15 5 0

地图<字符串,字符串>如何在此地图中插入数据?

我需要以键值格式存储字符串。所以我使用如下所示的地图。 #include&ltmap&gt using namespace std int main() { map&ltstring, string&gt m string s…

酒浓于脸红 2024-09-19 20:17:35 8 0

C++从字符串中删除字符

我目前正在尝试在 C++ 中实现从文本字段中删除字符。如果用户按下 Backspace,则执行以下代码。当前没有光标,它应该只删除最后一个字符... if (mText…

挖个坑埋了你 2024-09-19 17:50:42 9 0
更多

推荐作者

1CH1MKgiKxn9p

文章 0 评论 0

ゞ记忆︶ㄣ

文章 0 评论 0

JackDx

文章 0 评论 0

信远

文章 0 评论 0

yaoduoduo1995

文章 0 评论 0

霞映澄塘

文章 0 评论 0

更多

友情链接

    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文