草庐IT

const-string

全部标签

c++ - 如何为非 const 类调用 const_iterator?

这个问题在这里已经有了答案:Howtousetwofunctions,onereturningiterator,theotherreturningconst_iterator(2个答案)关闭8年前。我阅读了一些与此问题相关的其他线程,但没有为我的问题提供解决方案。希望大家给我出出主意或建议。我正在尝试实现这个名为Map的类。它应该包含2个迭代器-iterator和const_iterator。我实现了它们-iterator继承自const_iterator,在Map类中我有以下函数:iteratorbegin();iteratorend();const_iteratorbegin()c

c++ - Const 接收一个 var,我不能将它传递给模板

我想做的是:intconstbitsPerInt=log2(X);bitsetbits(arandomnumber...);但是我得到这个错误:'bitsPerInt'cannotappearinaconstantexpressionerror:templateargument1isinvalid 最佳答案 如果你真的需要它工作,制作你自己的在编译时工作的log2并将它传递给bitset的模板参数。constexprunsignedLog2(unsignedn,unsignedp=0){return(nbits;Liveexampl

c++ - 'unused' 的初始化被 'goto label' 跳过 - 为什么我为 std::string 而不是为 int 获取它?

我在某些代码中遇到了这个错误,经过一些试验后我偶然发现了这个怪异之处——我为std::string得到了它,但没有为int得到它。对于std::string我得到errorC2362:initializationof'unused'isskippedby'gotolabel':{gotolabel;std::stringunused;label:;}对于int我没有收到任何错误,但是:{gotolabel;intunused=10;label:;}为什么不同?是因为std::string有一个非平凡的析构函数吗? 最佳答案 这包含在

c++ - 是否在类外重新声明一个 const 静态变量

在C++Primer4th12.6.2中,建议在类外重新声明一个const静态变量。但是,下面的代码在gcc4.6.3中通过了。#includeusingnamespacestd;classX{public:conststaticinta=1;};//constintX::a;intmain(){Xx;cout我们应该重新声明它吗?附言:根据Potatoswatter的推荐,我添加了一个函数来使用conststatic成员作为引用:constintX::a;voidtest(constint&a){cout如果我们不在X类之外包含constintX::a,则会产生如下错误对“X::a”

c++ - 解析 yyyy-MM-dd HH :mm:ss date time string?

我有一个来自mysql的日期时间。我需要提取每个部分:intyear;intmonth;intday;inthour;intmin;intsec;例子:2014-06-1020:05:57对于每个组件,是否有比通过stringstream运行它更简单的方法?(请不要使用boost或c++11解决方案)。谢谢 最佳答案 sscanf()可能是最直接的选择。它是一个C库函数,因此纯粹主义者可能不赞成它。这是一个例子:intyear;intmonth;intday;inthour;intmin;intsec;constchar*str="

c++ - 修改 const 对象的可变成员有效吗?

在C++中,您现在可以拥有mutable成员。这给语言增加了一层“逻辑常量”。这些与只读数据有何关系-拥有一个mutable成员会阻止将const类放入.rodata部分吗?classFoo{mutableintbar;public:Foo():bar(0){}voidset(intx)const{bar=x;}};//Canthisbeinaread-onlysection?constFoofoo;intmain(void){//Isthiswell-defined?foo.set(5);} 最佳答案 是的,您可以修改const对

c++ - scanf 与 cin : string as integer processing

我有一个输入字符串“0100”为什么scanf("%i",&n);返回64而cin>>n;给我100?为什么cin以十进制值思考,而scanf以八进制值思考? 最佳答案 Fortheispecifier:  Anynumberofdigits,optionallyprecededbyasign(+or-).Decimaldigitsassumedbydefault(0-9),buta0prefixintroducesoctaldigits(0-7),and0xintroduceshexadecimaldigits(0-f).-sca

c++ - boost::filesystem::path::string() 输出的奇怪行为

pf.string()输出似乎有一些奇怪的行为,其中pf是用p.filename()生成的,其中p是boost::filesystem::path类型,由charconst*或std::string构造。这是代码段:#includenamespacefs=boost::filesystem;intmain(intargc,char**argv){fs::pathp(argv[0]);//orfs::pathp((std::string(argv[0])));fs::path&&pf=p.filename();//orfs::pathpf=p.filename();std::string

c++ - 当 const 引用绑定(bind)到临时引用时,堆栈中会发生什么?

C++标准允许将const引用绑定(bind)到右值,从而延长临时对象的生命周期,直到引用超出范围。但是,我无法弄清楚这实际上是如何编译的,让我用一个例子来解释:std::stringfoo(){returnstd::string("foo");}voidbar(){VeryBigObjectobj;//Perhapsdosomethingwiththebigobject}intmain(int,char**){conststd::string&foo_str=foo();bar();return0;}据我所知,以x86架构为例,首先调用函数foo()并在堆栈中构造字符串对象,这意味着

c++ - 具有 const 成员的对象的优先级队列比较器

我正在尝试实现一个优先级队列,它使用一个对象,该对象具有一个常量成员,用于定义队列中对象的优先级。以下是我正在使用的精简版#include#includeclassEvent{public:Event(float_time):time(_time){};constfloattime;};structEventComp{public:booloperator()(constEvent&a,constEvent&b)const{returna.time,EventComp>events;};intmain(intargc,char*argv[]){EventQueueq;}当我尝试编译(使