0
votes
2answers
69 views
closures mean fully type-safe criteria?
combining closures (FCM) and generics, would it be possible to have fully type-safe criteria.
// The following works without a cast as Foo.id is a 'long' field.
List<Long> i …
14
votes
12answers
6k views
In C#, why can’t a List<string> object be stored in a List<object> variable
It seems that a List object cannot be stored in a List variable in C#, and can't even be explicitly cast that way.
List<string> sl = new List<string>();List<object> ol; …
4
votes
3answers
343 views
How to make Databinding type safe and support refactoring
When I wish to bind a control to a property of my object, I have to provide the name of the property as a string. This is not very good because:
If the property is removed or
re …
0
votes
1answer
1k views
JAXB - XJC - influencing generated typesafe enum class and members
Hi there,
When compiling the following simpleType with the XJC compile (from the JAXB package)...
<xs:simpleType name="test">
<xs:annotation>
<xs:appin …
1
vote
1answer
170 views
Java enums in MIDP 2 mobile application
I've just got back to MIDP development after some 4 years of .NET 2 and Java 5 and 6. During that time I got to like using enums quite a lot.
Enum is a language feature that allow …
8
votes
7answers
1k views
Generic Type Conversion FROM String
Hi Guys,
Here is the problem I am having, I have a class that I want to use to store "properties" for another class, these properties simply have a name and a value. Ideally, what …
8
votes
9answers
2k views
Which Typesafe Enum in C++ Are You Using?
It is common knowledge that built-in enums in C++ are not typesafe.
I was wondering which classes implementing typesafe enums are used out there...
I myself use the following "bicy …
4
votes
3answers
387 views
Template typedefs - What’s your work around ?
C++ 0x has template typedefs. See here. Current spec of C++ does not.
What do you like to use as work around ? Container objects or Macros ?
Do you feel its worth it ?
7
votes
13answers
3k views
Generic Type Checking
OK, here we go again! Following on from my previous question on Converting to a Generic Type from String, I thought I would ask another Generics-related question!
This time, is th …
0
votes
2answers
986 views
VB.NET List(of X).Contains Behavior
I have a custom class set up as a key that has two properties, X and Y
I have something similar to this:
Dim test As New List(of TestClass)
Dim key as New TestData
key._a = A
ke …
2
votes
5answers
5k views
Type safety: Unchecked cast
In my spring application context file, I have something like:
<util:map id="someMap" map-class="java.util.HashMap" key-type="java.lang.String" value-type="java.lang.String"> …
2
votes
3answers
122 views
Web services and interface compatibility
Adding a service reference to a web service (this is all WCF) in Visual Studio produces some generated code including a client-side restatement of the interface being exposed.
I u …
2
votes
5answers
1k views
What is the meaning of the type safety warning in certain Java generics casts?
What is the meaning of the Java warning "Type safety: The cast from Object to List is actually checking against the erased type List"? I get it when I try to cast an Object to a t …
3
votes
7answers
290 views
How do I prevent using the incorrect type in PHP?
PHP, as we all know is very loosely typed. The language does not require you to specify any kind of type for function parameters or class variables. This can be a powerful feature. …
