Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

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?
106
votes
10answers
20k views

C#: Interfaces - Implicit and Explicit implementation

What are the differences in implementing interfaces implicitly and explicitly in C#? When should you use implicit and when should you use explicit? Are there any pros and/or cons to one or the ...
15
votes
5answers
2k views

Why Can A C# Class Inherit From One Interface Both Implicitly and Explicitly?

Today I happens to find that one C# class can inherit one interface both in implicit and explicit way. This surprises me. If C# works in this way, then one instance can behave differently when ...
14
votes
7answers
294 views

Casting “number 0” to char before appending it

Why would I need to explicitly cast number 0 to char before appending it to string using string::operator+? using namespace std; int main() { string s = ""; s += 65; // no compile error ...
14
votes
13answers
760 views

Why is “explicitness” considered a Good Thing?

I often hear people praise languages, frameworks, constructs, etc. for being "explicit". I'm trying to understand this logic. The purpose of a language, framework, etc. is to hide complexity. If it ...
11
votes
1answer
144 views

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 not the programmer’s first intention. Is such mechanism available for ...
10
votes
2answers
148 views

Implicit conversion to explicit bool-types for sorting containers?

I am playing around with the new explicit for cast-operators. If you write something like struct Data { explicit operator string(); }; It is not possible to accidentally convert Data to ...
9
votes
1answer
233 views

c++ explicit keyword for function without arguments [closed]

Possible Duplicate: What does the explicit keyword in C++ mean? Is there a reason to use the explicit keyword for a function that doesn't take any arguments? Does it have any effect? I'm ...
8
votes
8answers
657 views

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 here (it doesn't necessarily have to be the fastest method, but that would be my secondary concern). ...
8
votes
2answers
257 views

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 my interface: Interface IVehicle { int getWheel(); } here is ...
7
votes
2answers
149 views

How can I get a compilation error on accidental construction?

Given 2 classes: ... class Grades{ public: Grades(int numExams) : _numExams(numExams){ _grdArr = new double[numExams]; } double GetAverage() const; ... private: // The ...
7
votes
10answers
652 views

Foo f = Foo(); // no matching function for call to 'Foo::Foo(Foo)' … huh?

class Foo { public: explicit Foo() {} explicit Foo(Foo&) {} }; Foo d = Foo(); error: no matching function for call to 'Foo::Foo(Foo)' I tried changing Foo(Foo&) to Foo(Foo) as ...
6
votes
1answer
198 views

Is this example of the use of the C++ 'explicit' keyword correct?

In a GoogleTechTalks video on Youtube, Bjarne Stroustrup talks about the upcoming C++0x standard. In the video he mentions the following example: #include <iostream> struct Sick { ...
6
votes
2answers
210 views

F#: explicit type parameters in operator binding

I'm trying to define operator with the explicit type parameters and constraints: let inline (===)<'a, 'b when 'a : not struct and 'b : not struct> a b = obj.ReferenceEquals (a,b) It ...
6
votes
1answer
259 views

Why can't I use interface with explicit operator?

I'm just wondering if anyone knows the reason why you are not allowed to use interfaces with the implicit or explicit operators? E.g. this raises compile time error: public static explicit operator ...
6
votes
1answer
878 views

Why do we still need a .lib stub file when we've got the actual .dll implementation?

i'm wondering why linkers can not do their job simply by consulting the information in the actual .dll files that got the actual implementation code ? i mean why linkers still need .lib files to do ...
6
votes
5answers
350 views

Strings and ints, implicit and explicit

Had a coworker ask me this, and in my brain befuddled state I didn't have an answer: Why is it that you can do: string ham = "ham " + 4; But not: string ham = 4; If there's an implicit ...
6
votes
7answers
1k views

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 you use this same command to prevent the conversion of parameters for a class ...
5
votes
2answers
203 views

C# Generics - Calling generic method from a generic class

I have the following classes and I am trying to call Compare method from ExportFileBaseBL class but I get the error Cannot implicitly convert type 'Class1' to 'T'. An explicit conversion exists (are ...
5
votes
2answers
318 views

ASP.NET: explicit vs implicit localization?

To my mind the advantage of implicit localization over explicit localization is that if you have more than one property to localize for a given control, it's a more economical syntax. In the case ...
5
votes
1answer
510 views

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 up with a scenario in which a default constructor can be called implicitly. It seems ...
5
votes
2answers
1k views

Freakishly weird interface polymorphism using interface composition

I ended up with something like the following code in a project I'm working on. I thought it was really odd that I was allowed to do it, but now I'm starting wonder what is most likely an architectural ...
4
votes
2answers
158 views

For structs, do I have to call the constructor explicitly in C#?

The question is about the structs. When I declare a struct type variable/object (don't know which one suits better) or an array or list of structs, do I have to call the constructor explicitly like ...
4
votes
6answers
1k views

C++ explicit constructors and iterators

Consider the following code: #include <vector> struct A { explicit A(int i_) : i(i_) {} int i; }; int main() { std::vector<int> ints; std::vector<A> ...
4
votes
5answers
500 views

Why does the compiler choose bool over string for implicit typecast of L“”?

Having recently introduced an overload of a method the application started to fail. Finally tracking it down, the new method is being called where I did not expect it to be. We had setValue( const ...
3
votes
2answers
165 views

Linear Regression with explicit intercept in R

I want to calculate a linear regression using the lm() function in R. Additionally I want to get the slope of a regression, where I explicitly give the intercept to lm(). I found an example on the ...
3
votes
2answers
138 views

QDialog explicit constructor without argument - how to use correctly?

I experienced this with a derived class, but it's the same with QDialog base class: when I do QDialog dialog(); dialog.exec(); the compiler complains J:\...\mainwindow.cpp:-1: In member function ...
3
votes
5answers
181 views

Implicit <> Explicit interface [closed]

Possible Duplicates: C#: Interfaces - Implicit and Explicit implementation implicit vs explicit interface implementation Hello Can anyone explain me what the difference is between an ...
3
votes
2answers
733 views

Android Explicit Intent throws NoClassDefFound error

I'm trying to use an explicit intent to display a MapView in my android app. Although I don't see anything wrong with my code, I keep getting a "NoClassDefFoundError" when I try to start my activity. ...
3
votes
3answers
213 views

Why does explicit constructor of boost::shared_array cause an error?

boost::shared_array<char const *> x(new char const *[n]); In the line above (n is integer number not greater than 100) I'm creating char const**(const char**) and putting it to smart pointer x ...
3
votes
3answers
186 views

Declaring an instance of an explicit specializtion of a template within a regular class

I can't get this to compile at all. I may not be possible but I don't know why it should not be. class A { template <typename T> class B { int test() { return 0; } }; //template ...
3
votes
2answers
213 views

Javascript use explicit self/window objects to improve performance

I read on MSDN that to improve scripting efficiency, you can use self to make implicit window references explicit. Do you know if this is true? Does this basically mean that for instance calling ...
3
votes
6answers
2k views

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 words when it comes to programming c#. I looked in the dictionary for the meaning and here's ...
2
votes
2answers
117 views

Explicit & Implicit Operator with Numeric Types & unexpected results

I have never done any extensive work with overloading operators, especially the implicit and explicit conversions. However, I have several numeric parameters that are used frequently, so I am ...
2
votes
5answers
97 views

Can I rename an implemented method in Java?

I have a class which is implementing an interface, and one of the methods is called onClick. Is there a way to implement the onClick that the interface wants but name it something else? Something ...
2
votes
4answers
229 views

My explicit instantiation of template class seems doesn't work

I wrote a short program to test the template class's explicit instantiation as follows: #include <iostream> template <class T> struct less_than_comparable { friend bool ...
2
votes
3answers
134 views

Will the pointer to a template member function inside a constructor force instantiation?

Consider the following header file: // Foo.h class Foo { public: template <typename T> void read(T& value); }; It seems that assigning a pointer to Foo::read<T> in the ...
2
votes
2answers
255 views

.NET - How is explicit cast with “as” different (internally) from (someType)someobject, and why?

I understand that when you use an explicit cast like this: (someType)someobject you can get an invalid cast exception if someobject is not really someType. As well I understand that when you cast ...
2
votes
5answers
195 views

Can I use the explicit operator to create a derived class?

class Base { } class Derived1 : Base { } class Derived2 : Base { public static explicit operator Derived1(Derived2 d2) { return new Derived1(); } } class Test { static void ...
2
votes
3answers
121 views

Explicit List cast wrong type?

I'm trying to cast to a List from a result from a stored procedure .. I have already created the explicit (working) cast for a single object of timerangeResult -> Booking, but I am missing a list .. ...
2
votes
1answer
74 views

The explicit keyword in MS Visual Studio 4.1

I am implementing a smart pointer class using generics and I wanted to force users of this class to properly construct the smart pointer using syntax such as MyReference<TestCls>(mytest3)) ...
2
votes
2answers
274 views

When running NUnit and specifying a category, can all uncategorized tests be included too?

We have several hundred test classes, with a few dozen of them marked with the following attributes: [TestFixture] [Explicit] [Category("IntegrationTests")] so they will only be run in our ...
2
votes
2answers
2k views

Explicit template instantiation with member template function

I have a template class with a template member function. I want to explicitly instantiate the class to avoid a drastic compilation slowdown. I am using g++ 4.1.2. I get ambiguous template ...
2
votes
3answers
278 views

I want to extend std::string, but not for the reason you might think

I have a method that effectively takes a string. However, there is a very limited subset of strings I want to use. I was thinking of typedef'ing std::string as some class, and call the functions ...
2
votes
2answers
167 views

When must we use implicit and explicit operators in C#?

What is the usage of these operators?
2
votes
2answers
222 views

Explicitly passing a const object to an constructor which takes const reference to a polymorphic class

I got into a problem with my classes, passing a const object (polymorphic structure) to an explicit constructor which takes a const reference to the base class of that polymorphic structure. Here is ...
2
votes
1answer
315 views

Explicit keyword on multi-arg constructor?

I recently came across some weird looking class that had three constructors: class Class { public: explicit Class(int ); Class(AnotherClass ); explicit ...
2
votes
6answers
11k views

Is it possible to assign a base class object to a derived class reference with an explicit typecast in C#?

Is it possible to assign a base class object to a derived class reference with an explicit typecast in C#?. I have tried it and it creates a run-time error.
2
votes
1answer
457 views

Improving FOR XML Explicit Perfomance

Although using SQL FOR XML EXPLICIT is cumbersome, I find myself using it often. Since it allows full control over the generated XML document. My problem is with perfomance, sometimes it would take ...
2
votes
5answers
1k views

How to solve call ambiguity between Generic.IList<T>.this[] and IList.this[]?

I've got a collection that implements an interface that extends both IList<T> and List. public Interface IMySpecialCollection : IList<MyObject>, IList { ... } That means I have two ...

1 2