Tagged Questions

A typing system that enforces restrictions on which operations or methods may be called on an object based on type.

learn more… | top users | synonyms

17
votes
4answers
1k views

Static/Dynamic vs Strong/Weak

I see these terms banded around all over the place in programming and I have a vague notion of what they mean. A search shows me that such things have been asked all over stack overflow in fact. As ...
15
votes
3answers
341 views

Java breaks strong typing! Who can explain it? [closed]

Possible Duplicate: Varying behavior for possible loss of precision I found an inconsistence in Java strong typing check at compile time. Please look at the following code: int sum = 0; ...
13
votes
17answers
2k views

Why can't I inherit from int in C++?

I'd love to be able to do this: class myInt : public int { }; Why can't I ? Why would I want to? Stronger typing. For example, I could define two classes intA and intB, which let me do intA+intA ...
9
votes
9answers
4k views

Enforce strong type checking in C (type strictness for typedefs)

Is there a way to enforce explicit cast for typedefs of the same type? I've to deal with utf8 and sometimes I get confused with the indices for the character count and the byte count. So it be nice to ...
8
votes
4answers
3k views

Can someone tell me what Strong typing and weak typing means and which one is better?

Can someone tell me what Strong typing and weak typing means and which one is better?
6
votes
1answer
142 views

C#: How to find the default value for a run-time Type?

So given a static type in your code you can do var defaultMyTypeVal = default(MyType); How would you do the same thing given a variable of Type so you can use it during runtime? In other words how ...
5
votes
3answers
92 views

Creating in c#,c++ and java a strong typed version of a python weak typed structure

In python I have the following: graph = {} graph[1] = {} graph[2] = {} graph[3] = {} graph[1][3] = graph[3] graph[2][1] = graph[1] graph[2][3] = graph[3] graph[3][2] = graph[2] this is a ...
5
votes
2answers
98 views

Generics and database - a design issue

The situation is that I have a table that models an entity. This entity has a number of properties (each identified by a column in the table). The thing is that in the future I'd need to add new ...
5
votes
1answer
116 views

Ambiguous types using ListLike

I'm writing a function in Haskell to make a histogram from any ListLike with Ord elements: import qualified Data.ListLike as LL ... frequencies :: (Ord x, LL.ListLike xs x) => xs -> [(x, Int)] ...
5
votes
5answers
230 views

Why does NavigationService on Silverlight/WP7 uses Strings over Classes?

Given that C# is a leans more towards a strongly typed language, why did the designers chose navigation based on URIs over Classes? NavigationService.Navigate(new Uri("/MyPage.xaml", ...
5
votes
5answers
681 views

Strongly typed datasets vs. weakly typed datasets

What is meant by strongly typed datasets in .Net? Can anybody explain with a clear and brief example? And also, what is the difference between strongly typed and weakly typed datasets?
5
votes
5answers
399 views

Is there a dream language that merges the benefits of dynamic and strong typing?

I would be interested to learn a language that handles objects internally as hashtables (like JavaScript) but could wrap them with strong types to offer the benefits of code completion/intellisense in ...
4
votes
6answers
163 views

Strongly-typed integers

As a thought experiment on a hobby project, I've been thinking of a way to ensure that this sort of subtle bug/typo doesn’t happen: public void MyMethod(int useCaseId) { // Do something with the ...
3
votes
2answers
102 views

Type safety in string arguments

My specific question is about ASP.NET MVC but I am sure that the answers can be applied outside ASP.NET. How do you deal with functions that accept string arguments but still you want type safety? ...
3
votes
2answers
243 views

JSON deserialization to inherited types

I have a data table in my database where I store various settings. Since they are of any type (even complex object graphs) I decided to store their values as a serialized JSON strings. Let's say that ...
3
votes
4answers
2k views

Strong vs weak typing

The way I understand it, the following is allowed in PHP because it's a weakly-typed language. $var = 'Hello'; $var = 5; I just installed a Windows version of Python 2.6 and I was expecting it NOT ...
3
votes
4answers
539 views

Strong Typing a property name in .NET

Say I have a class with one property Public Class MyClass Public Property MyItem() as Object .... End Property End Class I have to pass the name of the property to a function call. ...
3
votes
6answers
395 views

Will PHP become a full fledged statically typed OOP language in the near future or ever?

I was wondering whether it is the intent of the development team of the PHP language to make it into a full fledged statically typed OOP language at some point. Any ideas about this? Edit: To add to ...
2
votes
4answers
51 views

return type consistency in php5

I've seen tons of threads about what to return in case a PHP function fails. But they were all about PHP 4. Now in my most recent (PHP 5) project, I want to enforce some sort of consistency with ...
2
votes
1answer
250 views

Consume WCF Data Services (OData) from .NET with untyped objects

I have a requirement for a ASP.NET web application to submit leads into a crm system through OData. The only API to consume OData in .Net, aside from using the HTTP level, seems to be the ...
2
votes
1answer
145 views

Strong scientific typing in XML and in Java

My project contains a big XSD Schema, and schema instances are binded to the java code using JAXB. I would like to add strong types into the java code, using JScience, and bind them to XSD types. My ...
2
votes
2answers
183 views

Advantages to Languages with “Weak Typing”

Why would a programming language want to use weak typing over strong typing?
2
votes
2answers
150 views

Strict vs loose typing when overriding a method

I have a class called AddressCard from an example in "Programming in Objective C", and I'm implementing a isEqual: method. The signature of this method in NSObject uses loose typing for the ...
2
votes
3answers
232 views

How do I strongly type criteria when using NHibernate's CreateCriteria method?

I'm currently using NHibernate, for the first time, with Fluent NHibernate. I've gotten everything setup nicely, however now I've come to actual doing some data retrieval, it seems to have fallen ...
2
votes
2answers
251 views

Functions accepting C/C++ array types

It seems like g++ ignores difference in array sizes when passing arrays as arguments. I.e., the following compiles with no warnings even with -Wall. void getarray(int a[500]) { a[0] = 1; } int ...
2
votes
2answers
407 views

Why can't I pull a ushort from a System.Object and then cast it as a uint? (C#)

I'm manipulating the items in a list that's a System.Management.ManagementObjectCollection. Each of these items is a System.Management.ManagementObject which contains properties indexed by string. ...
2
votes
2answers
122 views

Do you encapsulate scalars?

I find myself defining classes like: struct AngleSize { explicit AngleSize(double radians) : size(radians) {} double size; }; This has a bunch of advantages over storing anglesizes as plain ...
1
vote
1answer
38 views

Do any languages use exact and loose types?

During a lecture on field specialisation in OO programming it was suggested that the following could be used Strong types: Denote a class Weak types: Denote a class and all subtypes This could be ...
1
vote
1answer
75 views

Problem with strong type-checking in lint (warning 632)

I'm working to polish some existing C code in order to port it to a new compiler (embedded software, we're switching hardware). So I'm trying to scrub the current code with lint, and I'm stumped by an ...
1
vote
2answers
295 views

Extension method for strongly typed property access

I have the following class hierarchy class Test { public string Name { get; set; } } class TestChild : Test { public string Surname { get; set; } } I can't change the Test class. I want to ...
1
vote
8answers
832 views

Strongly typed calls into web.config without duplicating the property names?

I searched here for the answer. I'm sorry if this has been asked before (as I suspect it has). Summary: How can I have strongly typed calls into my web.config without duplicating the property names? ...
1
vote
5answers
1k views

Java Generics - difficulty enforcing strong type checking

Here's my code: public class Sequence<T> { protected List<T> sequence = new ArrayList<T>(); public Matrix<OrderedPair<T, ?>> ...
0
votes
2answers
24 views

Pyamf register_class not mapping strongly typed objects as expected

I'm using Pyamf as my backend for my Flex app and I'm seeing some weird problems with the mapping of the stongly typed classes. Here is the model that I'm returning class ...
0
votes
3answers
58 views

Strongly typed form in MVC which maps to a different type?

When I specify form inputs with the @Html.TextBoxFor method, then the generated input element would not necessarily map to the type that is expected in the form's action method. Let's say I have two ...
0
votes
4answers
185 views

Pros and cons of weak and strong typing

I'm making the transition from Java to PHP/Javascript and discovering all the practical aspects of using a weakly typed language. As I'm in a position to fully compare the two I'd like to know the ...
0
votes
1answer
1k views

Help with creating strongly typed html helper extension in Asp.net MVC 2

I'm trying to create a strongly type html helper extension for a date picker using jquery ui datepicker. I have created an extension that isn't strongly typed, which works but now I'm trying to ...
0
votes
1answer
237 views

Best way to create a strongly typed wrapper for Dictionary<string, string>

I have a Dictionary containing configuration values for other classes (tasks which will be executed periodically performing assorted specialized logic) which are persisted in a database and then ...