34
votes
7answers
3k 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 …
9
votes
1answer
204 views
C++ implicit conversion to bool
In an effort to make my enums more typesafe, I've been using macro-generated overloaded operators to disallow comparing enums against anything but an identically typed enum:
#incl …
5
votes
5answers
181 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 …
0
votes
1answer
65 views
Scala Implicit convertions: 2 way to invoke
@lucastex posted about the Java Elvis operator, and I tried something in Scala to get the same effect.
I've just converted everything to a new Structural Type with the ?: operato …
1
vote
4answers
90 views
Is there ever an excuse for throwing an Exception from an implicit conversion?
From MSDN:
By eliminating unnecessary casts, implicit conversions can improve source code readability. However, because implicit conversions can occur without the programmer's …
0
votes
1answer
58 views
Automatic type conversion with Castle ActiveRecord properties.
I have a Castle ActiveRecord class with a DateTime property. I am importing data from a text file, and would love to be able to do something like this:
string date_started = "09/2 …
0
votes
1answer
142 views
C++ implicit function calls
Will c++ implicit function calls be a feature of C++0x ? It is an interesting feature, but I haven't seen any progress on this and the GCC C++0x page didn't even mention it.
See h …
4
votes
2answers
165 views
Scala implicit usage choices
I've been wondering whether transparent implicit conversions are really such a good idea and whether it might actually be better to use implicits more, um, explicitly. For example, …
1
vote
1answer
75 views
Object converting string into “A”
I would like to write a class looking like this:
class Store[+A](dest: Symbol)(implicit c: String => A) extends Action(dest) {
override def update(options: HashMap[Symbol,Any …
4
votes
4answers
174 views
Avoiding implicit def ambiguity in Scala
I am trying to create an implicit conversion from any type (say, Int) to a String...
An implicit conversion to String means RichString methods (like reverse) are not available.
i …
1
vote
1answer
104 views
Why do we still need a .lib stub file when we’ve got the actual .dll implementation ?
hi folks,
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 …
0
votes
2answers
61 views
Javascript implicitly convertions
Hello,
There is a question. How JS will bevave if we compare if (true == "true") and (0 == "0") ? Is there any other tricky convertions?
1
vote
6answers
309 views
explicit and implicit c#
Hi
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 …
1
vote
3answers
157 views
Are free functions implicitly inlined if defined without a previous declaration in C++?
Is the following free function implicitly inlined in C++, similar to how member functions are implicitly inlined if defined in the class definition?
void func() { ... }
Do templ …
1
vote
2answers
192 views
Implicit return values in Ruby
I am somewhat new to Ruby and although I find it to be a very intuitive language I am having some difficulty understanding how implicit return values behave.
I am working on a sm …
