Tagged Questions
The strongly-typed tag has no wiki summary.
25
votes
13answers
1k views
How far to go with a strongly typed language?
Let's say I am writing an API, and one of my functions take a parameter that represents a channel, and will only ever be between the values 0 and 15. I could write it like this:
void Func(unsigned ...
24
votes
4answers
8k views
Are there strongly-typed collections in Objective-C?
I'm new to Mac/iPhone programming and Objective-C. In C# and Java we have "generics", collection classes whose members can only be of the type declared. For example, in C#
Dictionary<int, ...
18
votes
5answers
4k views
Is there any way to enforce typing on NSArray, NSMutableArray, etc.?
Can I make an NSMutableArray where all the elements are of type SomeClass?
18
votes
16answers
4k views
Is C strongly typed?
To quote Wikipedia:
Two commonly used languages that
support many kinds of implicit
conversion are C and C++, and it is
sometimes claimed that these are
weakly typed languages. However,
...
13
votes
1answer
337 views
What are the alternatives to subtype polymorphism in scala?
I'm interested to know the complete set of alternatives to subtype polymorphism in scala.
10
votes
2answers
2k views
Does ASP.NET MVC RC has a strongly typed RedirectToAction method already?
Since I have decided to let RC go while staying with Beta for now, I have no way of knowing whether there has been some progress in this area. Who has tried it, are there strongly typed ...
9
votes
2answers
10k views
Is there anything like a generic list in Cocoa / Objective-C?
What I really like in C# are generic lists. A list that can contain only one type of objects.
Is there something like a generic list in Cocoa/Objective-C? As far I only know NSArray who will take a ...
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
6answers
399 views
Is there a way to define C# strongly-typed aliases of existing primitive types like `string` or `int`?
Perhaps I am demonstrating my ignorance of some oft-used feautre of C# or the .NET framework, but I would like to know if there is a natively-supported way to create a type alias like EmailAddress ...
8
votes
6answers
711 views
Would javascript and similar scripting languages benefit from being strongly typed?
Just had my mind going today. I spent some time in IE debug mode, browsing the web as usual, and oh boy do I see many errors :) Most of these errors are because some value are of a different type than ...
7
votes
3answers
114 views
How can I create a strongly typed structure for accessing files in an XNA Content Project?
Preamble:
I'm working with an XNA Content project to hold all of the various textures (and possibly other resources) that I'm using as part of developing a game.
The default method of loading images ...
7
votes
2answers
1k views
Shopping cart session state done right in ASP.NET MVC
I'm implementing a simple session cart for unauthenticated users in ASP.NET MVC and I want to do it right.
In the past I have always stored the cart ID in the persistent Session["CartID"] store and ...
7
votes
8answers
707 views
Strongly-typed languages for web programming
Are there any strongly-typed programming languages for the Web? I program in PHP now, but often I wish it yelled at me when I tried to compare a number to a string. Functions in the standard library ...
7
votes
3answers
1k views
Strongly typed Lua
I am looking for a Lua front-end compiler that is strongly-type, but outputs standard Lua 5.1 byte-code (that has no notion of types at all). What I want is a decent amount of static, compile-time ...
7
votes
3answers
1k views
How should I specify the type of JSON-like unstructured data in Scala?
I'm considering porting a very simple text-templating library to scala, mostly as an exercise in learning the language. The library is currently implemented in both Python and Javascript, and its ...
7
votes
4answers
3k views
.NET Table Adapters: Get vs. Fill?
I always seem to use Get when working with data (strongly typed or otherwise) from the database and I have never really needed to use Fill although I just as easily could use Fill instead of get when ...
7
votes
3answers
2k views
Is there a way to make Strongly Typed Resource files public (as opposed to internal)?
Here's what I'd like to do:
I want to create a library project that contains my Resource files (ie, UI Labels and whatnot). I'd like to then use the resource library both in my UI and in my Tests. ...
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
5answers
3k views
Initializing strongly typed objects in LINQ to Entities
I have a plain old CLR object which is essentially a wrapper for two entity framework objects, I'm doing this so I can pass this wrapper object to a strongly typed view in the MVC framework. My foo ...
5
votes
4answers
623 views
Why do programming language allow assignment from integer to shortint?
program TypeCategory;
{$R+}
var
sInt : shortint;
iInt : integer;
begin
readln(iInt);
sInt := iInt;
writeln(sInt);
end.
Considering the above example,pascal language do allow ...
5
votes
1answer
1k views
Better way of doing strongly-typed ASP.NET MVC sessions
I am developing an ASP.NET MVC project and want to use strongly-typed session objects. I have implemented the following Controller-derived class to expose this object:
public class ...
5
votes
3answers
541 views
Looking for a fast, compact, streamable, multi-language, strongly typed serialization format
I'm currently using JSON (compressed via gzip) in my Java project, in which I need to store a large number of objects (hundreds of millions) on disk. I have one JSON object per line, and disallow ...
5
votes
1answer
293 views
Preventing XSS exploits using the type system as Joel suggested
In Podcast 58 (about 20 minutes in), Jeff complains about the problems of HTML.Encode() and Joel talks about using the type system to have ordinary strings and HTMLStrings:
A brief political ...
5
votes
2answers
1k views
mvc no codebehind strongly typed viewdata headers not working
I add that to my header <%@ Page Language="C#" MasterPageFile="~/Views/Shared/Site.Master" Inherits="System.Web.Mvc.ViewPage" %> and am able to access ViewData and all its internals as well as ...
4
votes
6answers
126 views
Is is a good practice to store propery names in a public constant string?
In order to protect ourself from failure because of any renaming of properties (Let's say you regenerate your poco classes because you have changed some column names in the relevant Db table) is it a ...
4
votes
5answers
3k views
Display an image contained in a byte[] with ASP.Net MVC3
I've a view with a strong type. This strong type has a field consisting of a byte[], this array contains a picture.
Is it possible to display this image with something like @Html.Image(Model.myImage) ...
4
votes
2answers
134 views
Strongly typed collection with multiple base types in ActionScript (Vector <T,T>)?
Does ActionScript have any way of handling a strongly typed list with multiple base types?
I am actually looking for something such as a Vector<T,T> ?
Is it possible?
Or is the only way of ...
4
votes
4answers
521 views
mvc.net how to use strongly typed helpers while iterating through list
I have a partial view that renders a list of objects into a table format and allows editing of the values...
<%@ Control Language="C#" ...
4
votes
4answers
313 views
Why are interfaces not strongly typed?
I have the following code compiles without issue. Of course, I get an invalid cast exception when executing the Dim C As IDoThingsC = GetThing_C(). Am I missing something? Would you ever want to ...
4
votes
1answer
2k views
ASP.NET MVC Two Way Data Binding of Model to Radio Button List using Typed Model
I have a mvc view made up of a matrix of radio buttons. Each row of radio buttons is in a group and represents a typed object from the model. Using the guidance of various blogs and postings I have ...
4
votes
7answers
1k views
Is there a good strongly typed way to do PropertyChanged events in C#?
It must be a somewhat common event to change the name of a property and expect the Rename functionality in Visual Studio to take care of all the necessary renaming, except for the property name of the ...
4
votes
5answers
402 views
Static/strong typing and refactoring
It seems to me that the most invaluable thing about a static/strongly-typed programming language is that it helps refactoring: if/when you change any API, then the compiler will tell you what that ...
4
votes
5answers
1k views
ASP.NET MVC - How to create a strongly-typed view from classes in referenced class-library?
i'm trying to create a strongly-typed view using Visual Studio 2008. I can right-click a controller action and choose: Add view... In the next dialog window there is an option 'Create a strongly-typed ...
4
votes
4answers
2k views
Tips for using Visual Studio Typed DataSets?
When using strongly typed dataSets in Visual Studio 2005/2008, if the underlying database schema changes, the only practical way to refresh is to delete the dataset and recreate it from scratch. ...
4
votes
6answers
1k views
4
votes
7answers
965 views
What are the key aspects of a strongly typed language?
What makes a language strongly typed? I'm looking for the most important aspects of a strongly typed language.
Yesterday I asked if PowerShell was strongly typed, but no one could agree on the ...
4
votes
8answers
2k views
Is PowerShell a strongly typed language?
PowerShell is definitely in the category of dynamic languages, but would it be considered strongly typed?
3
votes
3answers
116 views
Why aren't typedefs strongly typed?
What's the reason for typedefs not being strongly typed? Is there any benefit I can't see or is it due to backward compatibility? See this example:
typedef int Velocity;
void foo(Velocity v) {
...
3
votes
2answers
73 views
Strongly Typed @User.Identity
I customize IIdentity and IPrincipal adding a few more properties in IIdentity.
You can obtain a strongly typed instance @User.Identity for my custom class? Without having to make conversions in ...
3
votes
3answers
837 views
Derby's handling of NULL values
I am new to Derby and I noticed that I face similar problems as when using the DB2 RDBMS as far as null values are concerned. The Derby documentation states, that a null value must have a type ...
3
votes
6answers
548 views
PHP 'instanceof' failing with class constant
I'm working on a framework that I'm trying to type as strongly as I possibly can. (I'm working within PHP and taking some of the ideas that I like from C# and trying to utilize them within this ...
3
votes
2answers
172 views
What are the use cases for this static reflection code?
This is Oliver Hanappi's static reflection code he posted on stackoverflow
private static string GetMemberName(Expression expression)
{
switch (expression.NodeType)
{
...
2
votes
1answer
155 views
how to build case insensitive strong typed LINQ query in c#?
I try to build extension method for IQuerable like this:
public static IQueryable<T> FilterByString<T>(this IQueryable<T> query,
Expression<Func<T, string>> ...
2
votes
5answers
978 views
Typed AS3 JSON Encoder and Decoder?
I need to encode and Decode AS3 Objects in a typed manner. http://code.google.com/p/as3corelib/ only supports untyped encoding and decoding.
http://code.google.com/p/ason/ supports some kind of typed ...
2
votes
3answers
73 views
Does case sensitivity have anything to do with strongly typed languages (or loosely typed languages)?
(I admit this may be a n00b question - I know very little about CS theory, mostly a hands-on/hobby sort.)
I was googling up strongly-typed language for the official definition, and one of the top ...
2
votes
1answer
99 views
strongly typed view projected linq
I have spent hours upon hours trying to figure out how to shape the data projected from linq to a strongly type view. My problem is I think my problem is I am unsure how to use IEnumberable and ...
2
votes
3answers
145 views
Strongly typed properties declarations - is this code safe?
I'm wondering if following code is "safe". By "safe" I mean that I don't depend on some specific compiler version or undocumented feature.
I want to get string with property / field name, but I want ...
2
votes
5answers
464 views
Why is tightly coupled bad but strongly typed good?
I am struggling to see the real-world benefits of loosely coupled code. Why spend so much effort making something flexible to work with a variety of other objects? If you know what you need to ...
2
votes
3answers
213 views
Strongly-typed generic method invokes its argument's base class method, instead of a shadowed method in T?
Consider a MyForm class that contains a shadowed implementation of Show(). It also contains a CreateForm() method, which accepts an instance of the form and calls the shadowed sub:
Public Class ...
2
votes
6answers
242 views
Is this possible using generics? c#
I know I can solve the following problem just by creating a custom class, but can the following be strongly typed as a List(or any other type)?
var x = new object[]
{
new ...