Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

25
votes
3answers
920 views

Conditional operator cannot cast implicitly?

I'm a little stumped by this little C# quirk: Given variables: Boolean aBoolValue; Byte aByteValue; The following compiles: if (aBoolValue) aByteValue = 1; else aByteValue = 0; But ...
17
votes
2answers
611 views

Varying behavior for possible loss of precision

In Java, when you do int b = 0; b = b + 1.0; You get a possible loss of precision error. But why is it that if you do int b = 0; b += 1.0; There isn't any error?
13
votes
5answers
224 views

Selectively disable subsumption in Scala? (correctly type List.contains)

List("a").contains(5) Because an Int can never be contained in a list of String, this should generate an error at compile-time, but it does not. It wastefully and silently tests every String ...
10
votes
4answers
448 views

Explanation of casting/conversion int/double in C#

I coded some calculation stuff (I copied below a really simplifed example of what I did) like CASE2 and got bad results. Refactored the code like CASE1 and worked fine. I know there is an implicit ...
6
votes
3answers
261 views

C# Implicit operators and ToString()

I'm creating my own type for representing css values (like pixels eg. 12px ). To be able to add/subtract/multiply/... my type and ints I've defined two implicit operators to and from int. Everything ...
6
votes
1answer
148 views

Auto-(un)boxing fail for compound assignment

Thanks to the implicit casting in compound assignments and increment/decrement operators, the following compiles: byte b = 0; ++b; b++; --b; b--; b += b -= b *= b /= b %= b; b <<= b >>= b ...
6
votes
4answers
2k views

What is the difference between static_cast and Implicit_cast?

What is implicit_cast? when should I prefer implicit_cast rather than static_cast?
5
votes
4answers
52 views

Implicit casting of Null-Coalescing operator result

With the following understanding about null coalescing operator (??) in C#. int? input = -10; int result = input ?? 10;//Case - I //is same as: int result = input == null? input : 10; // Case - II ...
5
votes
4answers
532 views

Implicit cast from char** to const char**

Why my compiler(GCC) doesnt implicitly cast from char** to const char**? Thie following code: #include <iostream> void print(const char** thing) { std::cout << thing[0] << ...
5
votes
1answer
260 views

Why can't I downcast pointer to members in template arguments?

If I make a pointer-to-base-member, I can convert it to a pointer-to-derived-member usually, but not when used within a template like Buzz below, where the first template argument influences the ...
4
votes
5answers
1k views

Getting rid of error C2243

Is it possible to getting rid of error C2243? class B {}; class D : protected B {}; D d; B *p = &d; // conversion from 'D *' to 'B &' exists, but is inaccessible I had this error in my ...
3
votes
4answers
81 views

Is there a way to disable implicit casts from UInt32 to char?

I am working on code that takes as input a ton of ascii text defined by specific protocol. The original author interpreted "string(1)" datatypes in the original protocol as char's in the code. There ...
3
votes
2answers
41 views

Invalid implicit cast when casting array of interfaces to an array of structs

I have a struct that implements some interface. This works fine until I have an array of the struct implementation and try to implicitly cast that array to another array of the interface type. (See ...
3
votes
3answers
763 views

C# enum to string auto-conversion?

Is it possible to have the compiler automatically convert my Enum values to strings so I can avoid explicitly calling the ToString method every time. Here's an example of what I'd like to do: enum ...
3
votes
10answers
991 views

Why is implicit conversion allowed from superclass to subclass?

Can someone tell me why the line with "//Compiles" compiles, and why the line with "//Doesn't Compile" does not? I don't understand why A would be implicitly convertible to B, not the other way ...
2
votes
2answers
283 views

C# implicit cast “overloading” and reflection problem

I've got a problem with the following code (which compiles but crashes): using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Reflection; namespace ...
2
votes
2answers
209 views

Is possible to get automatic cast from user-defined type to std::string using cout?

As in the question, if I define a string operator in my class: class Literal { operator string const () { return toStr (); }; string toStr () const; }; and then I use it: Literal l1 ...
2
votes
2answers
132 views

How do you directly type cast a boxed struct in C#?

I have a namespace of structs which represent various units of measure (Meters, Feet, Inches, etc.) ... anout 12 in total, generated courtesy of T4 templates :) . Each struct carries implicit casting ...
2
votes
3answers
127 views

inconsistent behavior with string+=int in c#

I'm looking at some code golf in LINQPad and wondering why: int c; string o; o+=c;//this works o+=P==2?"."+c:c;//this doesn't o+=P==2?"."+c:""+c;//this does mostly why the first one works and ...
2
votes
2answers
548 views

C++, how implicit conversion/constructor are determined?

How does C++ determine implicit conversion/construction of objects few levels deep? for example: struct A {}; struct B: A {}; struct C { operator B() { return B(); } }; void f(A a) {} int ...
2
votes
2answers
532 views

Is there a way to do dynamic implicit type casting in C#?

Given this class with an implicit cast operator: public class MyDateTime { public static implicit operator MyDateTime(System.Int64 encoded) { return new MyDateTime(encoded); } ...
2
votes
2answers
548 views

C++ templates and ambiguity problem

I have a subset of a pointer class that look like: template <typename T> struct Pointer { Pointer(); Pointer(T *const x); Pointer(const Pointer &x); template ...
2
votes
1answer
355 views

Runtime InvalidCastException with implicit cast operator

I have a C# library that internal clients configure with VB.Net Their scripts are throwing an InvalidCastException where they really shouldn't. So the code is something like this (massively ...
1
vote
1answer
324 views

C# Bitwise Operations on shorts - Why cast to an int?

short BitwiseTest(short value) { short test1 = ((value >> 8) & 0xFF); short test2 = unchecked((short)((value << 8) & 0xFF00)); return (test1 | test2); } The above ...
1
vote
3answers
241 views

How does SQL Server implicit type casting work in this case?

When I try this ad-hoc query in SQL Server (assume UserId is a NVARCHAR field): SELECT * FROM MyUser WHERE UserId = 123456 I get this error: Msg 245, Level 16, State 1, Line 1 Syntax error ...
1
vote
1answer
337 views

C# Implicit casting to List<T> returns runtime error

I have a class similar to the following that uses an internal List: public class MyList<T> : IEnumerable<T> { private List<T> _lstInternal; public MyList() { ...
1
vote
3answers
362 views

Implicit array casting in C#

I have the following classes with an implicit cast operator defined: class A { ... } class B { private A m_a; public B(A a) { this.m_a = a; } public static implicit ...
1
vote
3answers
142 views

Implicit cast from now() to a date field

I have an issue with MySQL 5.1. A datetime data type isn't implicitly casted to match a date column. SELECT * FROM my_table WHERE my_date_field = NOW() This request doesn't return any rows using ...
1
vote
4answers
288 views

Implicit casting in VB.NET

The question is intended for lazy VB programmers. Please. In vb I can do and I won't get any errors. Example 1 Dim x As String = 5 Dim y As Integer = "5" Dim b As Boolean = "True" Example 2 Dim ...
1
vote
1answer
103 views

How do i cast A to object to class A when B can typcast to A?

Basically i want to do this. aa causes a bad cast exception. NOTE: o can be ANYTHING. It may not be B, it can be C, D, E, F etc. But this should work as long as o is a class that can typecast into A ...
1
vote
4answers
1k views

Implicit casting Integer calculation to float in C++

Is there any compiler that has a directive or a parameter to cast integer calculation to float implicitly. For example: float f = (1/3)*5; cout << f; the "f" is "0", because calculation's ...
1
vote
5answers
416 views

Stopping an implicit cast on operator delete

My String class provides an operator char* overload to allow you to pass the string to C functions. Unfortunately a colleague of mine just inadvertently discovered a bug. He effectively had the ...
1
vote
2answers
232 views

System.Type; implicit cast to string

While looking at the System.Type class under the Code Definition Window, I cannot seem to understand how an instance of this class is implicitly cast to string. For example, on the following code: ...
1
vote
3answers
382 views

No implicit int -> short conversion in ternary statement

short s; s = (EitherTrueOrFalse()) ? 0 : 1; This fails with: error CS0266: Cannot implicitly convert type 'int' to 'short'. An explicit conversion exists (are you missing a cast?) Can ...
1
vote
3answers
2k views

Which Json deserializer renders IList<T> collections?

I'm trying to deserialize json to an object model where the collections are represented as IList<T> types. The actual deserializing is here: JavaScriptSerializer serializer = new ...
0
votes
2answers
80 views

How to define cast and implicit cast operations for a Scala class of mine?

For example I'd like to have this to work the way to set jDName to "John Doe" and jDAge to 32: case class Person(name : String, surname : String, age : Int) val johnDoe = Person("John", "Doe", 32) ...
0
votes
4answers
160 views

Safe & Simple Access to Explicit Interface Members in C#

When I am working with explicit interface implementations in C#, it often becomes necessary to cast an object to one of its interfaces in order to access a member of that interface. Because of the ...
0
votes
2answers
146 views

Implicit Conversion

My program was:- #include < iostream.h> #include < conio.h> struct base { protected: void get() { cin>>a>>b; } public: base(int i=0, int ...
0
votes
2answers
291 views

Implicit version of IsAssignableFrom?

In my code using reflections i wrote if (f.FieldType.IsAssignableFrom("".GetType())) I have a class that has an implicit conversion to strings. However the if statement above doesnt catch it. How ...
0
votes
1answer
320 views

Invaid cast exception, even when I have an implicit cast operator defined (in asp mvc app)

I have an mvc model class created and one of the properties is of type 'MyObject'. It also has a System.ComponentModel.DataAnnotations.StringLength attribute on it. MyObject as implicit cast ...
0
votes
8answers
971 views

C++ rely on implicit conversion to bool in conditions?

I found the following rule in a coding standards sheet : Do not rely on implicit conversion to bool in conditions. if (ptr) // wrong if (ptr != NULL) // ok How ...
-1
votes
4answers
225 views

Will the c# compiler perform multiple implicit conversions to get from one type to another?

Let's say you have yourself a class like the following: public sealed class StringToInt { private string _myString; private StringToInt(string value) { _myString = value; ...