Tagged Questions

112
votes
7answers
42k views

What does the explicit keyword in C++ mean?

Someone posted in a comment to another question about the meaning of the explicit keyword in C++. So, what does it mean?
14
votes
3answers
329 views

Is there any downside to marking all C++ constructors explicit?

A few times, when refactoring code, I have forgotten to add the explicit keyword when adding a parameter to a previously-parameterless constructor, or removing parameters from a previously ...
11
votes
4answers
393 views

Explicit move constructor?

The explicit keyword is recommended for all most constructors which can be called with one argument, except for copy constructors. For copy constructors, it has an use (to forbid implicit copying via ...
11
votes
3answers
2k views

What's the difference between explicit and implicit assignment in C++

int value = 5; // this type of assignment is called an explicit assignment int value(5); // this type of assignment is called an implicit assignment What is the difference between those, if any, and ...
7
votes
7answers
23k views

C++ deprecated conversion from string constant to 'char*'

I have a class with a private char str[256]; and for it I have an explicit constructor: explicit myClass(const char *func) { strcpy(str,func); } I call it as: myClass obj("example"); When I ...
6
votes
5answers
496 views

C++: Why is explicit allowed for default constructors and constructors with 2 or more (non-default) parameters?

I understand that constructors with one (non-default) parameter act like implicit convertors, which convert from that parameter type to the class type. However, explicit can be used to qualify any ...
5
votes
2answers
622 views

If I use explicit constructor, do I need to put the keyword in both .h and .cpp files?

Actually my question is all in the title. Anyway: I have a class and I use explicit constructor: .h class MyClass { public: explicit MyClass(const string& s): query(s) {} private: ...
4
votes
2answers
659 views

c++ copy initialization & direct initialization, the weird case

Before continue reading this, please read Is there a difference in C++ between copy initialization and assignment initialization? first, make sure you understand what it is talking about. I'll ...
4
votes
2answers
356 views

When should you use direct initialization and when copy initialization?

Is it simply preference or are there specific instances where one is necessary over another? I'm refering to the following variants for initialization T t(e); // direct initialization T t = e; // ...
2
votes
2answers
316 views

placement new VS explicit constructor call in C++

recently I have come across these two ways of creating an object in a specific place in memory: 1. void* mem = malloc(sizeof(T)); T* obj = new(mem) T(); 2. T* obj = (T*)malloc(sizeof(T)); *obj ...
2
votes
3answers
143 views

Is there a explicit copy

I'm looking for a syntax like this: class Hugo { Hugo(); explicit Hugo( const Hugo& hugo ); Hugo GetRandomHugo() { Hugo hugo; hugo.value = rand(); ...
2
votes
3answers
317 views

C++ — Why should we use explicit in this constructor?

Please refer to Wikipedia:Strategy Pattern (C++) class Context { private: StrategyInterface * strategy_; public: explicit Context(StrategyInterface ...
1
vote
1answer
64 views

Why does this explicit destructor cause memory corruption in a shared ptr?

What is wrong with this code and how can I fix it? #include <iostream> #include <boost/shared_ptr.hpp> #include <vector> struct CTest { CTest() { std::cout << "ctor ...
1
vote
2answers
131 views

C++ Constructor for Implicit Type Conversion

I have these codes: class Type2 { public: Type2(const Type1 & type); Type2(int); const Type2 & operator=(const Type2 & type2); //.... }; ... Type1 t1(13); Type2 t2(4); t2=t1; ...
1
vote
2answers
161 views

Does specifying a method/constructor explicit mean that it can't be called implicitly?

Does specifying a method/constructor explicit mean that it can't be called implicitly? I mean if a constructor is specified as explicit, can't it be called implicitly by some operator like = or other ...
1
vote
1answer
220 views

Can a single argument constructor with a default value be subject to implicit type conversion

I understand the use of the explicit keyword to avoid the implicit type conversions that can occur with a single argument constructor, or with a constructor that has multiple arguments of which only ...
0
votes
3answers
63 views

Destructor of a class implicitly defined

Consider the case of class which does not have a destructor and constructor explicitly declared by the developer. I understand that a destructor for a class will be implicitly declared in this case. ...
0
votes
3answers
118 views

c++ inheritance question

I have a question about this: class A { int a; int* pa; public: A(int i):a(i) , pa(new int(a)) { cout<<"A ctor"<<a<<endl; } ~A() { delete pa; ...