Top "Explicit" questions

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

Purpose of Explicit Default Constructors

I recently noticed a class in C++0x that calls for an explicit default constructor. However, I'm failing to come …

c++ default-constructor explicit explicit-constructor
Explicit Assignment vs Implicit Assignment

I'm reading a tutorial for C++ but it didn't actually give me a difference (besides syntax) between the two. Here …

c++ implicit explicit
starting android service using explicit vs implicit intent

According to the standard Android documentation, the prefered way to start a service (started service that is) is to use …

android android-intent intentfilter implicit explicit
Binding UpdateSourceTrigger=Explicit, updates source at program startup

I have following code: <Window x:Class="WpfApplication1.Window1" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="…

wpf binding explicit updatesourcetrigger
Best (safest) way to convert from double to int

I'm curious as to the best way to convert a double to an int. Runtime safety is my primary concern …

c# type-conversion explicit tryparse
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 …

c++ constructor explicit explicit-constructor
Explicitly Define Datatype in Python Function

I want to define 2 variables in python function and define them as float explicitly. However, when i tried to define …

python python-3.x function floating-point explicit
Incorrectly aligned or overlapped by a non-object field error

I'm trying to create the following structure: [StructLayout(LayoutKind.Explicit, Size=14)] public struct Message { [FieldOffset(0)] public ushort X; [FieldOffset(2)] [MarshalAs(…

c# compact-framework alignment structure explicit
What is the difference between "Explicitly" and "Implicitly" in programming language?

I would like to have a clear and precise understanding of the difference between the two. Also is the this …

java android explicit
Why can't I call methods within a class that explicitly implements an interface?

Here's the story. I created an interface, IVehicle. I explicitly implemented the interface in my class, Vehicle.cs. Here is …

c# interface explicit