Top "Explicit" questions

In C++ specifies constructors and conversion operators that don't allow implicit conversions or copy-initialization.

Updating value in iterrow for pandas

I am doing some geocoding work that I used selenium to screen scrape the x-y coordinate I need for address …

python loops pandas explicit
explicit and implicit c#

I'm new to C# and learning new words. I find it difficult to understand what's the meaning of these two …

c# dictionary implicit explicit
Android explicit intent with target component

Is it possible to fire explicit intent but not for an activity from my project but for activity in some …

android android-intent explicit
How to calculate the explicit form of a recursive function?

I have this recursive function: f(n) = 2 * f(n-1) + 3 * f(n-2) + 4 f(1) = 2 f(2) = 8 I know from experience that explicit form …

recursion formula explicit
Can a cast operator be explicit?

When it comes to constructors, adding the keyword explicit prevents an enthusiastic compiler from creating an object when it was …

c++ casting operator-keyword explicit
Explicit copy constructor

I have extended std::string to fulfil my needs of having to write custom function build into string class called …

c++ copy-constructor assignment-operator stdstring explicit
Explicitly disabling UIView animation in iOS4+

I have been reading that Apple recommends to use block-based animations instead of CATransaction Before, I was using this code …

ios animation explicit
C++ always use explicit constructor

After reading the following blog : http://xania.org/200711/ambiguous-overloading I started asking myself "should I not always explicit define my …

c++ constructor explicit defensive-programming
Can you use keyword explicit to prevent automatic conversion of method parameters?

I know you can use C++ keyword 'explicit' for constructors of classes to prevent an automatic conversion of type. Can …

c++ implicit-conversion explicit