草庐IT

max_chars

全部标签

c++ - 将 const char * 转换为 std::string

这个问题在这里已经有了答案:Howtoconvertaconstchar*tostd::string[duplicate](6个答案)关闭8年前。我有一个从处理函数返回的constchar*,我想将它转换/分配给std::string的实例进一步操纵。这看起来应该是直截了当的,但我找不到任何说明应该如何完成的文档。显然,我错过了一些东西。见解赞赏。

c++ - g++ 将返回的字符串文字视为 const char 指针而不是 const char 数组

当从应该使用g++(版本4.7.3)执行隐式转换的函数返回字符串文字时,我看到了一些奇怪的行为。任何人都可以解释为什么以下代码:#includeclassTest{public:templateTest(constchar(&foo)[N]){printf("Templateconstchararrayconstructor\n");}Test(char*foo){printf("char*constructor\n");}};Testfn(){return"foo";}intmain(){Testt("bar");Testu=fn();return0;}产生结果:Templateco

c++ - 我不明白在下面的代码中将 char buffer[] 与 X 类型的对象对齐的原因

Stroustrup在他的新书第151页中展示了以下使用类型说明符alignas的示例:Sometimes,wehavetousealignmentinadeclaration,whereanexpression,suchasalignof(x+y)isnotallowed.Instead,wecanusethetypespecifieralignas:alignas(T)means"alignjustlikeaT."Forexample,wecansetasideuninitializedstorageforsometypeXlikethis:voiduser(constvector

c++ - 从 *char 数组转换时有哪些严格的别名规则?

在将char数组转换为其他类型时,我对严格的别名规则感到困惑。我知道允许将任何对象转换为char数组,但我不确定反过来会发生什么。看看这个:#includeusingnamespacestd;struct{alignas(int)charbuf[sizeof(int)];//correct?}buf1;alignas(int)charbuf2[sizeof(int)];//incorrect?struct{floatf;//obviouslyincorrect}buf3;typenamestd::aligned_storage::typebuf4;//obviouslycorrecti

c# - 如何将带有 const char* 的 C union 映射到 C# 结构?

在本地库的回调函数中,我需要访问一个espeak_EVENT数组。问题出在原C代码中的UNION语句:typedefstruct{espeak_EVENT_TYPEtype;unsignedintunique_identifier;//messageidentifier(or0forkeyorcharacter)inttext_position;//thenumberofcharactersfromthestartofthetextintlength;//wordlength,incharacters(forespeakEVENT_WORD)intaudio_position;//th

max()在mySQL中返回9999不超过这一点吗?

我有一个客户桌,那里有一个名为的字段uniqueId类型:varchar(255)&整理:utf8mb4_unicode_ci..我想找到最大的唯一功能..尽管我有10000的条目,但它总是返回9999..为什么?SELECTMAX(uniqueId)FROM`customers`看答案可能是你有绳子,然后尝试铸造SELECTMAX(CAST(uniqueIdASUNSIGNED))FROM`customers`

c++ - 当 vector<char>&& 绑定(bind)到 vector<char>& 时编译器不会报错

我使用的是VisualStudio2013Express。classB{public:vector&a;int&b;B(vector&i,int&c):a(i),b(c){}};intmain(){intl=3;vectorh;shared_ptrbb(newB(std::move(h),l));return0;}为什么代码可以被接受?当我将参数l更改为std::move(l)时,编译器会报错“无法将参数2从'int'转换为'int&'”。 最佳答案 这是VisualC++编译器中可用的语言扩展,现在已经存在了很长一段时间。该扩展允

c++ - 使用对 const char * 的右值引用的重载解析

#includeusingnamespacestd;voidf(constchar*const&s){cout输出:rvaluervalue为什么输出不是“右值左值”? 最佳答案 字符串文字和s都不是指针(它们是数组),因此标准的相关部分是[conv.array]:Anlvalueorrvalueoftype"arrayofNT"or"arrayofunknownboundofT"canbeconvertedtoaprvalueoftype"pointertoT".Theresultisapointertothefirsteleme

c++ - 列表初始化的 char 数组是否仍然以 null 结尾?

当我阅读LippmanC++Primer(第5版,C++11)时,我遇到了这段代码:charca[]={'C','+','+'};//notnullterminatedcout在ca上调用库strlen函数,它不是以null终止的,会导致未定义的行为。Lippman等人说,“这个调用最可能的效果是strlen将继续查找跟在ca之后的内存,直到它遇到一个空字符。”稍后的练习将询问以下代码的作用:constcharca[]={'h','e','l','l','o'};constchar*cp=ca;while(*cp){cout我的分析:ca是一个非空终止的字符数组。cp是一个指向char

c++ - C++ STL 中 max_element 和 minmax_element 的行为差异

在C++max_element中,如果有多个元素是最大值,则返回第一个这样的元素。而minmax_element(C++11及更高版本)返回最后一个最大元素。这种行为的标准是否有原因?来自cplusplus.comIfmorethanoneequivalentelementhasthelargestvalue,theseconditeratorpointstothelastofsuchelements.Thecomparisonsareperformedusingeitheroperator 最佳答案 Boost的库文档包括rati