Tagged Questions
The type-safety tag has no wiki summary.
35
votes
4answers
5k 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
renamed, I don’t get a ...
33
votes
12answers
37k 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;ol = sl;
results ...
31
votes
7answers
14k views
Generic type conversion FROM string
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 I would like is to be able to add typed properties, so that ...
28
votes
7answers
9k views
Generic type checking
Is there a way to enforce/limit the types that are passed to primitives? (bool, int, string, etc.)
Now, I know you can limit the generic type parameter to a type or interface implementation via the ...
24
votes
5answers
40k 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">
<entry ...
20
votes
9answers
8k 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 "bicycle", but it is ...
18
votes
4answers
6k views
Template typedefs - What's your work around?
C++ 0x has template aliases (sometimes referred to as 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 ...
17
votes
3answers
296 views
Is there a name for this pattern? (C# compile-time type-safety with “params” args of different types)
Is there a name for this pattern?
Let's say you want to create a method that takes a variable number of arguments, each of which must be one of a fixed set of types (in any order or combination), and ...
15
votes
5answers
1k views
Why is the C# compiler emitting a callvirt instruction for a GetType() method call?
I am curious to know why this is happening. Please read the code example below and the corresponding IL that was emitted in comments below each section:
using System;
class Program
{
static ...
15
votes
8answers
4k views
12
votes
6answers
399 views
The new keyword “auto”; When should it be used to declare a variable type? [closed]
Possible Duplicate:
How much is too much with C++0x auto keyword
Have we (as a community) had enough experience to determine when and/or whether auto is being abused?
What I am really ...
12
votes
6answers
527 views
What does it mean for a language to be statically typed?
My understanding is that it means that one can potentially write a program to formally prove that a program written in a statically typed language will be free of a certain (small) subset of defects.
...
10
votes
4answers
138 views
Type-proofing primitive .NET value types via custom structs: Is it worth the effort?
I'm toying with the idea of making primitive .NET value types more type-safe and more "self-documenting" by wrapping them in custom structs. However, I'm wondering if it's actually ever worth the ...
10
votes
1answer
360 views
Is static_cast misused?
I have mixed feelings about static_cast, as it is the safest C++ cast available, but allows both safe and unsafe conversions at the same time, so you have to know the context to say if it is actually ...
10
votes
11answers
882 views
Discriminated union in C#
[Note: This question had the original title "C (ish) style union in C#"
but as Jeff's comment informed me, apparently this structure is called a 'discriminated union']
Excuse the verbosity of this ...
9
votes
2answers
324 views
type safety in clojure
I want to ask what sort of type safety languages constructs are there on Clojure?
I've read 'Practical Clojure' from Luke VanderHart and Stuart Sierra several times now, but i still have the distinct ...
9
votes
2answers
579 views
Type safe(r) bitflags in C++?
While revising some old c++ code, I ran across several bitflags defined as enums.
enum FooFlags
{
FooFlag1 = 1 << 0,
FooFlag2 = 1 << 1,
FooFlag3 = 1 << 2
// etc...
...
9
votes
6answers
436 views
Looking for a type-safe web development platform
What programming language + web framework combinations support static type-checking? I'm not scared of functional programming (I'd prefer it), however I'm looking for a mature framework with the bells ...
7
votes
4answers
181 views
Why can't I assign the wrong enum element, but can compare against the wrong enum element?
With the following C++ definitions:
enum EnumA {
EA_Element = 1
};
enum EnumB {
EB_Element = 10
};
the following code won't compile and that only makes sense:
EnumA variable;
variable = ...
7
votes
5answers
3k 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 type with generic ...
6
votes
3answers
146 views
Type-safe setting of objects with a dictionary that has a `Type` key
I have a generic dictionary of objects where the key is of type Type:
public class DynamicObject : IDictionary<Type, object>
The idea is that this object is shared in a plugin-based ...
6
votes
4answers
195 views
C++ vs. C# type safety
I was reading through the questions with most votes from the history tag and came across Most expressive algorithm for the history of computing class?, where the accepted answer states that C has ...
6
votes
4answers
222 views
Typesafe Javascript
Is there a way to enforce types in JavaScript? I'm thinking of a pre-processor which takes an input file written in ActionScript 3 or Java and converts it to JS.
I do not need a big run-time ...
6
votes
1answer
194 views
What is a good typesafe alternative to variadic functions in C++?
In joint with this question. I am having trouble coming up with a good type safe solution to the following seemingly basic problem. I have a class music_playlist that has a list of the songs it should ...
6
votes
3answers
246 views
ASP.NET MVC 3.0 - Why strong-typing Model in a View, if static compilation is not happening?
I'm actively developing desktop applications, local and network services, some classic ASP.NET, etc., so I'm used to static compilation and static code analysis. Now that I'm (finally) learning ...
6
votes
3answers
313 views
Generics in VB.NET
Now, as a C# programmer, I know that generics are awesome.
However, when dabbling in some VB.NET, I discovered that the following does not cause a compiler error:
Dim instance As List(Of Integer)
...
5
votes
3answers
135 views
Type-safe flattening of nested collections/structures in Java
I would like to flatten arbitrary deeply nested collections/structures of elements of some type T in Java, optimally with
only having a live view and not a copied collection;
not only handling ...
5
votes
7answers
262 views
How do you test the type-safetiness of your genericized API?
You can use e.g. JUnit to test the functionality of your library, but how do you test its type-safetiness with regards to generics and wildcards?
Only testing against codes that compile is a "happy ...
5
votes
4answers
230 views
Total Collections, rejecting collections of types that do not include all possibilities
Let's say we have the following types:
sealed trait T
case object Goat extends T
case object Monk extends T
case object Tiger extends T
Now, how do you construct a collection of T such that at ...
5
votes
4answers
334 views
Is VB.NET weakly typed compared to C#
Yesterday I was at an interview where my interviewer (who admittedly didn't claim to be an expert on the subject) stated that "VB.NET is more weakly typed then C#" - (At the same time he couldn't ...
5
votes
5answers
890 views
Type safety in Python
I've defined a Vector class which has three property variables: x, y and z. Coordinates have to be real numbers, but there's nothing to stop one from doing the following:
>>> v = Vector(8, ...
5
votes
7answers
201 views
Better type safety in Java collections
In my java coding, I often end up with several Map<String,Map<String,foo>> or Map<String,List<String>> and then I have trouble remembering which String is which key. I comment ...
5
votes
2answers
174 views
Unsafe conversion
Is the following conversion safe?
int b[10][10];
char *x;
int a[]={0,1,2,3,4,5,6,7,8,9};
for(int i=0;i<10;i++)
for(int j=0;j<10;j++)
b[i][j]=a[i];
for(x=(char *)&b[0];x<=(char ...
5
votes
3answers
712 views
Generics and sorting in Java
Suppose you write a static function in Java to sort an array, much like Arrays.sort(). The problem with Arrays.sort() is that it receives an array of Object, and throws a ClassCastException if its ...
5
votes
9answers
3k views
Java: type safety, generics, .equals()
I'm trying to override equals() for a parametrized class. How can I make sure that this parameter is the same?
/* (non-Javadoc)
* @see java.lang.Object#equals(java.lang.Object)
* Because this is ...
4
votes
2answers
181 views
Why doesn't it matter that Null is not typesafe to those who like typesafety
I'm not really into type-safety as a concept but many consider it important for well written code and think that for some of the most important factors such as for code to scale well, be reusable, be ...
4
votes
2answers
69 views
Variadic list constructor, how to default to the correct type and get type safety
Here's what I've got:
{-# LANGUAGE MultiParamTypeClasses
, FlexibleInstances #-}
class ListResultMult r a where
lstM :: a -> [a] -> r
listM :: ListResultMult r a => a -> r
...
4
votes
3answers
257 views
Java: properly checked class instantiation using reflection
I'm trying to use one of the simplest forms of reflection to create an instance of class:
package some.common.prefix;
public interface My {
void configure(...);
void process(...);
}
public ...
4
votes
1answer
232 views
Using types to model arbitrary constraints for compile-time checking
Given the strong type system of Scala, I had an ambitious project which I'm about to abandon now because the effort to usefulness ratio seems to be too high.
Basically I have some graph elements (GE) ...
4
votes
2answers
408 views
Scala strict type system vs C++ type system
For fans of Scala's strict type system, but fans of C++:
Is it possible to force yourself to program C++ with the same strictness? (not using void*, not casting a lot, boxing simple value type ie ...
4
votes
7answers
242 views
Comparing arrays of different size
I am implementing my own boost::array variant for fun and education, and I was just wondering: should comparing two arrays of different size yield false, or should it be a type error?
array<int, ...
4
votes
3answers
263 views
c++: using type safety to distinguish types oftwo int arguments
I have various functions with two int arguments (I write both the functions and the calling code myself). I am afraid to confuse the order of argument in some calls.
How can I use type safety to ...
4
votes
4answers
160 views
mix generic type variables to implement a type-safe map function in Java
I want to write a type-safe map method in Java that returns a Collection of the same type as the argument passed (i.e. ArrayList, LinkedList, TreeSet, etc.) but with a different generic type (that ...
4
votes
3answers
114 views
Return an opaque object to the caller without violating type-safety
I have a method which should return a snapshot of the current state, and another method which restores that state.
public class MachineModel
{
public Snapshot CurrentSnapshot { get; }
public ...
4
votes
3answers
1k views
Java Generics Type Safety warning with recursive Hashmap
I'm using a recursive tree of hashmaps, specifically Hashmap map where Object is a reference to another Hashmap and so on. This will be passed around a recursive algorithm:
foo(String filename, ...
3
votes
1answer
25 views
cannot find type or namespace “SafeIntDictionary”
While I compile PexExtension, i run into an error in line line
SafeIntDictionary<int> undoMarkers = new SafeIntDictionary<int>();
The compiler shows "error 6 cannot find type or ...
3
votes
3answers
58 views
Replacing non type safe with type safe generic method
Im looking for a way to replace the following:
public class NonTypeSafe
{
private List<object> contents = new List<object>();
public List<object> Contents {get { return ...
3
votes
2answers
52 views
C++ Binding an Index to One Data Structure
Suppose I have two containers of elements:
std::vector<std::string> foo = { "aa", "bb", "cc" };
std::vector<std::string> bar = { "dd", "ee" };
I pass around indecies into foo and bar ...
3
votes
3answers
120 views
How to get rid of downcast using synchronous send with Scala Actors?
Suppose, I send a request to an actor and receive its response synchronously:
case class MyRequest()
case class MyResponse(data:Any)
val resp = myActor !? MyRequest()
Now I have to downcast resp to ...
3
votes
2answers
117 views
Prevent method call using compiler tricks
I have roughly these types:
interface Record {}
interface UpdatableRecord extends Record {}
interface Insert<R extends Record> {
// Calling this method only makes sense if <R extends ...