Type safety is the extent to which a language discourages using variables in an unsafe manner, according to the variables' type.

learn more… | top users | synonyms (1)

0
votes
0answers
29 views

Statically typed multi-value result from multi-args method

I am trying to accomplish the following in C#. However, for brevity I am using functional/Haskell style pseudo-code to make my point. Imagine a function exec that takes any number of arguments. Each ...
0
votes
1answer
30 views

type safety warning how to avoid for generic assigments

Im using the following code and i have type safety warning for the following lines, Type safety: Unchecked cast from Root<capture#5-of ?> to Root<T> Type safety: Unchecked cast from ...
1
vote
0answers
18 views

Is there a typesafe way to express 'related to property name xy on object Bar of this class' in a property attribute in C#?

Consider the following classes public class Lorem { public double LoremsDouble { get; set; } } public class Ipsum { public Lorem IpsumsLorem { get; set; } public Dolor ...
1
vote
1answer
60 views

Is typeid() enough for type safety?

I was wondering if typeid is a "hard enough" criterion for type safety to forego all the usual precautions. Specifically, consider the following code snippet: class storage { private: ...
7
votes
1answer
118 views

Casting a generic superclass to a subclass

This is my first SO question, I hope it's useful enough, both for readers and myself! I've googled and ducked the world around with this for the past two days. I have abstract model and storage ...
2
votes
3answers
91 views

Do DynamicProxy classes work well with intellisense/type safety?

I was looking at using DynamicProxy classes, and I'm fairly new to this concept. Before I got too far down this road, I was wondering how well these classes work with IntelliSense and type safety? ...
3
votes
1answer
77 views

JSF and type safety

As I struggled for hours I finally found where those annoying ClassCastExceptions came from, which I thought were produced by Hibernate and it's enum-mapping. But they came from my JSF view, where I ...
0
votes
0answers
22 views

Type-safe IDs in service layer for error prevention

I'm currently writing on the business logic of an Java-application. I've splitted it into domain layer and service layer. The service layer provides interfaces which allow access on the data via data ...
0
votes
1answer
86 views

Scala type safety and type erasure related issue

Lets say I want to construct a list of records, where each record consists of some x number of fields. However, the number of fields and type of the fields are not known at compile time. Only at ...
-1
votes
2answers
57 views

How to use generics in simple cache implementation with cache interface?

public interface Cache<T>{ public void put(String key,T value); public Object get(Object key); } public class CacheImpl<T> implements Cache { private static Object monitor = ...
1
vote
1answer
60 views

How to avoid unnecessary cast when declaring a generic type parameter with two interfaces

Why do I have to explicitly cast command to C in the following code? Commands implements both Runnable and Describable. @Test public <C extends Runnable & Describable> void ...
4
votes
2answers
274 views

Variadic templates and typesafety

There are several implementations of variadic templates printf function. One is this: void printf(const char* s) { while (*s) { if (*s == '%' && *++s != '%') throw ...
0
votes
2answers
34 views

Enforcing pointer to pointer type at compile time

I've got a deserialization scenario for an object hierarchy, in which most objects contain pointers to other objects, but don't own them. I'm trying to implement a two-step process in which: ...
0
votes
1answer
91 views

Why using an error prone URI for Windows Phone Navigation Service [closed]

Every Windows Phone developer might be familiar with the NavigationService and the way a URI is used to navigate to the specified content, i.e.: NavigationService.Navigate(new ...
4
votes
1answer
69 views

Making the VB compiler warn when I don't declare variables properly

How can I make the VB6 compiler fail when I forget to declare a variable? This would stop various typing errors (both keyboard and data types) and errors like this when it tries to access something ...
0
votes
3answers
176 views

Most semantically correct and type-safe construction from serialized byte array? (c++11)

Consider the following c++11 class which represents an IPv4 header structure that should be constructable from a byte array regardless of byte ordering. #include <arpa/inet.h> #include ...
0
votes
0answers
17 views

Is deuce STM type safe?

I have written a JAVA library for pi calculus which utilizes Deuce STM for managing concurrent processes. I further wish to prove the type safety of my library. Is Deuce STM library type safe? If ...
0
votes
1answer
42 views

Type-Safe Linking using DWARF

Why doesn't GCC together with GNU ld support type-checked linking when the DWARF-format contains all the type-information we need? We waste a lot of time on our company trying to make Ada and C ...
2
votes
4answers
92 views

C#: type safety over sets of integers (e. g. enums)

I have a case where I have several sets of numbers (register values). I want to improve readability and also to check appropriate types (only certain values make sense in certain functions). In my ...
0
votes
5answers
121 views

C code iterators incrementing by sizeof(int) instead of by bytes

Could somebody explain exactly what the following C code does please? Specially the first line and the iterated line? int * p = &my_numbers[0]; int i; int j = 0; for (i = 0; i < 6; i++) { ...
2
votes
1answer
58 views

Why would one disable variance checking via @uV? [duplicate]

I just stumbled over the following definition of method to defined by TraversableLike (2.10.0): override def to[Col[_]](implicit cbf: CanBuildFrom[Nothing, A, Col[A @uV]]): Col[A @uV] = { val b = ...
9
votes
2answers
100 views

Generic Type Conflicts?

I saw this interesting question which talks about T declaration at the class level and the same letter T ( different meaning) at the method level. So I did a test. static void Main(string[] args) ...
0
votes
0answers
98 views

How to implement simple Signal/Slot mechanism in C/C++ without using any libraries?

I'm new to GUI programming like gtkmm. I'm struggling with libsigc++ but I don't know What is the meaning of Signal/Slot? How can we create that without using sigc and Qt in C/C++? And What is the ...
5
votes
3answers
95 views

Is this cast in my generic method safe?

I have code in my project that looks like this: public interface Bar<T extends Foo<?>> { //... } public class MyFoo implements Foo<String> { private ...
4
votes
3answers
158 views

Logic operators for non-Boolean types in Scala

I like the concise code that can be written using boolean operators rather than conditionals in (usually dynamic) languages like Lisp, Python or JavaScript, as in the typical: x = someString or ...
9
votes
1answer
155 views

Has Scala a better way to express “self recursive generic types”?

There's a common Java idiom (seen in Enum for example) to declare a generic type variable that has to match the actual derived type. class Enum<E extends Enum<E>> { ... } or, if needed ...
2
votes
1answer
90 views

Akka 2.1.0 type checking of Tuple elements

Using Akka 2.1.0 I'm sending a message from one Actor (ActorA) to another (ActorB) and expecting the returned message to be an Option[(String, String)]. ActorB has a val defined as an Enumeration and ...
8
votes
3answers
266 views

Type safe enum pattern implementation with generics

How could the typesafe enum pattern be implemented on a generic class? Let's assume it's implemented along these lines public class KnownSetting<T> { public readonly static ...
2
votes
1answer
270 views

let Gson throw exceptions on wrong types

I use Gson inside my projects deserialize Json-Strings to java-Objects. If I do a request I expect a well-defined response from the Server. The Server will either return the well-defined response I ...
2
votes
4answers
122 views

Type casts in C and type safety

In chapter 6.2.1 of Mitchell's book (Concepts in Programming Languages), it mentioned that: Type Casts. Type casts allow a value of one type to be used as another type. In C in particular, an ...
3
votes
1answer
105 views

Should I validate method paramaters in Ruby?

I have Java background and in Java when programmer call method with wrong parameters, exception will be thrown. How Ruby programmers treat wrong method arguments? Two opposite examples from core ...
5
votes
3answers
126 views

Type-safely pass a class name to a method

I need the class name in a method say for example X. Meanwhile, I don't want to loose type-safety and I'm not gonna allow other developers to pass a string (class name) to the method. Something like ...
0
votes
2answers
33 views

How do you control a range for type safety?

Imagine you have a function that converts ints to roman string: public String roman(int) Only numbers from 1 to 3999 (inclusive) are valid for conversion. So what do you do if someone passes 4000 ...
1
vote
3answers
68 views

What is the pythonic way to check the vaildity of constructor arguments?

For example take a simple class representing a person. The only class attribute is a string representing the persons name. I want to make sure that nobody tries to pass the constructor some other type ...
1
vote
2answers
50 views

Dynamic template dependency in a map

I am not quite sure how to phrase my question, so I am gonna give an example: Take this map for example: Map<Class<? extends DatabaseEntry>, Class<? extends IDecorator<? extends ...
14
votes
5answers
454 views

Why does Java allow type-unsafe Array assignments?

Generally, Java can be considered as a type-safe language. I know that there are some flaws with generics, but I recently came across a Problem I never had before. To break it down: Object[] objects ...
0
votes
1answer
93 views

Type safe equivelent of constraining a type parameter of a generic method to an unclosed type of given interface

In C# is it possible to constrain the type parameter of a generic method such that it is restricted to an unclosed type of an interface in a type safe manner? Let me elaborate... For example I have ...
3
votes
1answer
177 views

Enums, Classes, Reflection, and Generic Casting

Consider that I have an interface com.mycompany.SomeInterface, and an enum com.mycompany.SomeEnum implements SomeInterface. I want to get all enum constants of this class – as instances of ...
1
vote
3answers
116 views

ObjC protocols potentially useless

In ObjC we can use protocols to restrict an id behavior, so we can declare something like -(void)aMethod:(id<aProtocol>)aVar which works very well until we provide a value or a non-id variable ...
0
votes
4answers
132 views

What is the most modern and idiomatic way to define a type safe “byte” ( as in 8 bits ) type in C++?

I want to define a byte type in my C++ program, basically an unsigned char what is the most idiomatic way to go about doing this? I want to define a byte type to abstract away the different ...
0
votes
0answers
24 views

Statically Typed Languages - A variable in a program may be associated with values of multiple types during the execution of the program

In Java, a statically typed language, a reference to an object of a parent type can point to an object of the child type too. Is this a correct illustration of the above statement? If it isn't, could ...
0
votes
5answers
54 views

Casting from a interface being returned? Is it always safe?

Say I have the function: public Set<String> giveUp() { Set<String> alreadyGuessed = guessed; guessed = new LinkedSet<String>(); //fill Guessed with possible words ...
3
votes
2answers
158 views

How to couple two classes in a generic way?

I have classes for entities like Ship, Shampoo, Horse etc and each of them will have a manager class like ShipManager, ShampooManager, HorseManager etc. All the manager classes implement IManager and ...
4
votes
1answer
779 views

JComboBox safety type difference in Java 7 and Java 6

I'm using project that can be compiled both Java 6 and Java 7 platforms. One of the GUI classes is using JComboBox. Since the JComboBox changed its specification in Java 7 to generic type, it requires ...
8
votes
1answer
136 views

Breaking Data.Set integrity without GeneralizedNewtypeDeriving

The code below uses an unsafe GeneralizedNewtypeDeriving extension to break Data.Set by inserting different elements with different Ord instances: {-# LANGUAGE GeneralizedNewtypeDeriving #-} import ...
0
votes
1answer
22 views

name safe on top of type safe

Has anyone got the same need I have for a "name safe"--please define--on top of a "type safe"--please define? I don't have any questions about type safes; I'm just looking for a name safe. Sample ...
11
votes
3answers
516 views

Int vs Word in common use?

It seems like the common pattern of taking/returning Int (ie ByteString.hGet and Data.List.length) is contrary to the Haskell pattern of using strongly-descrbing types, since many of these cases can ...
7
votes
3answers
155 views

Java compiler ignores type safty

public class POJO<T> { private List<Integer> integer = new ArrayList<Integer>(); public POJO() { integer.add(1); integer.add(2); } public ...
2
votes
3answers
213 views

Go: lookup function by name

I am new to type safe, and can't figure out how to do following package main func test(){ print("In Test") } func main(){ a := "test" a() }
2
votes
2answers
407 views

JPA Criteria API and type safety

I seem to have missed something in JPA's criteria API and its type safety. Consider the following code: @Entity @Access(FIELD) class User( @Id Long id; @Column(unique=true) String email; ...

1 2 3 4