Tagged Questions
Types, and type systems, are used to enforce levels of abstraction in programs.
259
votes
14answers
51k views
String vs string in C#
In C# the string keyword (highlighted in Visual Studio as a data type) is just a shortcut to the String class right?
In that case, it would be the same to use either while coding from the semantic ...
90
votes
8answers
4k views
How is null + true a string?
Since true is not a string type, how is null + true a string ?
string s = true; //Cannot implicitly convert type 'bool' to 'string'
bool b = null + true; //Cannot implicitly convert type 'string' ...
56
votes
7answers
9k views
Old style and new style classes in Python
What is the difference between old style and new style classes in Python? Is there ever a reason to use old-style classes these days?
48
votes
6answers
16k views
What's the canonical way to check for type in python?
What is the best way to check if a given object is of a given type. How about checking if the object inherits from a given type.
Let's say I have an object o. How do I check if it's an str?
47
votes
8answers
28k views
What is the difference between Bool and Boolean types in C#
What is the difference between Bool and Boolean types in C#?
46
votes
10answers
1k views
How much is too much with C++0x auto keyword
I've been using the new auto keyword available in the C++0x standard for complicated templated types which is what I believe it was designed for. But I'm also using it for things like:
auto foo = ...
46
votes
1answer
2k views
Haskell Weird Kinds: Kind of (->) is ?? -> ? -> *
When I was experimenting with Haskell kinds, and trying to get the kind of ->, and this showed up:
$ ghci
...
Prelude> :k (->)
(->) :: ?? -> ? -> *
Prelude>
Instead of the ...
42
votes
5answers
40k views
Objective-C : BOOL vs bool
I'm new to Objective-C and I saw the "new type" BOOL (YES, NO).
I read that this type is almost like a char.
For testing I did :
NSLog(@"Size of BOOL %d", sizeof(BOOL));
NSLog(@"Size of bool %d", ...
41
votes
8answers
4k views
When should I use double instead of decimal?
I can name three advantages to using double (or float) instead of decimal:
Uses less memory.
Faster because floating point math operations are natively supported by processors.
Can represent a ...
40
votes
5answers
2k views
Why are C# 3.0 object initializer constructor parentheses optional?
It seems that the C# 3.0 object initializer syntax allows one to exclude the open/close pair of parentheses in the constructor when there is a parameterless constructor existing. Example:
var x = new ...
39
votes
2answers
2k views
Difference between `data` and `newtype` in Haskell
where is the difference when i write
data Book = Book Int Int
newtype Book = Book Int Int
35
votes
4answers
2k views
Why doesn't Haskell's Prelude.read return a Maybe?
Is there a good reason why the type of Prelude.read is
read :: Read a => String -> a
rather than returning a Maybe value?
read :: Read a => String -> Maybe a
Since the string might ...
35
votes
5answers
2k views
scala type programming resources
According to this question, scala's type system is turing complete.
What resources are available that enable a newcomer to take advantage of the power of type-level programming?
Here are the ...
35
votes
5answers
18k views
Differences between isinstance() and type() in python
What are the differences between these two code fragments? Which way is considered to be more pythonic?
Using type():
import types
if type(a) is types.DictType:
do_something()
if type(b) in ...
35
votes
7answers
43k views
How to determine the variable type in Python
I want to see the type of a variable whether it is unsigned 32 bit,signed 16 bit etc.
How to view...
34
votes
4answers
7k views
When to use NSInteger vs int?
When should I be using NSInteger vs int when developing for iOS? I see in the apple sample code they use NSInteger (or NSUInteger) when passing a value as an argument to a function or returning a ...
34
votes
4answers
18k views
Difference between <input type='button' /> and <input type='submit' />
There is no such thing as a stupid question, so here we go: What is the difference between between <input type='button' /> and <input type='submit' />?
33
votes
2answers
333 views
Datatype promotion for dependently challenged
After reading through the ghc 7.4. pre-release notes and the Giving Haskell a Promotion paper, I'm still confused on what you actually do with promoted types. For example, the GHC manual gives the ...
33
votes
4answers
1k views
Why does my C# array lose type sign information when cast to object?
Investigating a bug, I discovered it was due to this weirdness in c#:
sbyte[] foo = new sbyte[10];
object bar = foo;
Console.WriteLine("{0} {1} {2} {3}",
foo is sbyte[], foo is byte[], bar is ...
32
votes
4answers
6k views
Why does this Haskell code produce the “infinite type” error?
I am new to Haskell and facing a "cannot construct infinite type" error that I cannot make sense of.
In fact, beyond that, I have not been able to find a good explanation of what this error even ...
32
votes
6answers
3k views
What is an Existential Type?
I read through the wikipedia entry on this. I gathered that they're called existential types because of the existential operator (∃). I'm not sure what the point of it is, though. What's the ...
31
votes
6answers
1k views
What is the difference between typeof and the is keyword?
What's the exact difference between the two?
// When calling this method with GetByType<AClass>()
public bool GetByType<T>() {
// this returns true:
return ...
31
votes
4answers
2k views
Practical uses of a Dynamic type in Scala
Besides integration with dynamic languages on the JVM, what are the other powerful uses of a Dynamic type in a statically typed language like Scala?
31
votes
10answers
31k views
check variable whether is number or string in javascript
does anyone know how can I check variable whether is number or string in javascript
29
votes
6answers
937 views
Are there any real life uses for the Java byte primitive type?
For some inexplicable reason the byte primitive type is signed in Java. This mean that valid values are -128..127 instead of the usual 0..255 range representing 8 significant bits in a byte (without ...
29
votes
4answers
1k views
What is the difference between a class and a type in Scala (and Java)?
Scala
Where can differences between a class and a type be observed in Scala and why is this distinction important?
Is it only a consideration from the language design point-of-view or has it ...
28
votes
3answers
2k views
Why is there “data” and “newtype” in Haskell?
To me it seems that a newtype definition is just a data definition that obeys some restrictions (only one constructor and such), and that due to these restrictions the runtime system can handle ...
28
votes
3answers
13k views
Python - Determine the type of an object?
Is there a simple way to determine if a variable is a list, dictionary, or something else? Basically I am getting an object back that may be either type and I need to be able to tell the difference.
28
votes
7answers
20k views
Python: check if an object is a list or tuple (but not string)
This is what I normally do in order to ascertain that the input is a list/tuple - but not a str. Because many times I stumbled upon bugs where a function passes a str object by mistake, and the target ...
28
votes
5answers
17k views
Should you choose the MONEY or DECIMAL(x,y) datatypes in SQL Server?
I'm curious as to whether or not there is a real difference between the money datatype and something like decimal(19,4) (which is what money uses internally, I believe).
I'm aware that money is ...
28
votes
4answers
4k views
What is Hindley-Milner?
I encountered this term "Hindley-Milner" which I'm not sure if grasp what it means. I read Steve Yegge's "Dynamic Languages Strike Back" and "The Pinocchio Problem" and Daniel Spiewak's "What is ...
28
votes
8answers
5k views
What does a type followed by _t (underscore-t) represent?
This seems like a simple question, but I can't find it with the Stack Overflow search or Google. What does a type followed by a _t mean? Such as
int_t anInt;
I see it a lot in C code meant to deal ...
27
votes
4answers
414 views
Instantiation of recursive generic types slows down exponentially the deeper they are nested. Why?
Let's start with these three recursive generic interfaces† that represent immutable stacks:
interface IStack<T>
{
INonEmptyStack<T, IStack<T>> Push(T x);
}
interface ...
27
votes
4answers
1k views
What is a higher kinded type in Scala?
You can find the following in the web (I omitted some sources to not denounce):
Higher kinded type == type constructor?
class AClass[T]{...} // e.g. class List[T]
some say this is a higher ...
27
votes
9answers
1k views
Monad theory and Haskell
Most tutorials seem to give a lot of examples of monads (IO, state, list and so on) and then expect the reader to be able to abstract the overall principle and then they mention category theory. I ...
27
votes
14answers
6k views
What is be the most appropriate data type for storing an IP address in SQL server?
What should be the most recommended datatype for storing an IPv4 address in SQL server?
Or maybe someone has already created a user SQL data-type (.Net assembly) for it?
I don't need sorting.
27
votes
3answers
4k views
Why do C++ streams use char instead of unsigned char?
I've always wondered why the C++ Standard library has instantiated basic_[io]stream and all its variants using the char type instead of the unsigned char type. char means (depending on whether it is ...
26
votes
7answers
907 views
Are nullable types reference types?
when I declare an int as nullable
int? i=null;
Is i here become a reference type?
26
votes
20answers
3k views
Structs - real life examples?
There are any number of questions here on SO dealing with the differences between Structs and Classes in C#, and when to use one or the other. (The one sentence answer: use structs if you need value ...
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 ...
25
votes
3answers
924 views
Conditional operator cannot cast implicitly?
I'm a little stumped by this little C# quirk:
Given variables:
Boolean aBoolValue;
Byte aByteValue;
The following compiles:
if (aBoolValue)
aByteValue = 1;
else
aByteValue = 0;
But ...
24
votes
2answers
224 views
How to relate to type from outer context
Let us consider the following code snippet:
blah :: a -> b -> a
blah x y = ble x where
ble :: b -> b
ble x = x
This compiles fine under GHC, which essentially means that b from the ...
24
votes
3answers
3k views
Explanation of <script type = “text/template”> … </script>
I just stumbled upon something I've never seen before. In the source of Backbone.js's example TODO application (Backbone TODO Example) They had their templates inside a <script type = ...
24
votes
8answers
2k views
Endless for loop
I have the following loop:
for (byte i = 0 ; i < 128; i++) {
System.out.println(i + 1 + " " + name);
}
When I execute my programm it prints all numbers from -128 to 127 in an infinite loop. ...
24
votes
5answers
2k views
What does the `forall` keyword in Haskell/GHC do?
I'm beginning to understand how the forall keyword is used in so-called "existential types" like this:
data ShowBox = forall s. Show s => SB s
This is only a subset, however, of how forall is ...
24
votes
11answers
4k views
Best practices for storing postal addresses in a database (RDBMS)?
Are there any good references for best practices for storing postal addresses in an RDBMS? It seems there are lots of tradeoffs that can be made and lots of pros and cons to each to be evaluated -- ...
24
votes
9answers
21k views
MySQL: what data type to use for hashed password field and what length?
I'm not sure how password hashing works (will be implementing it later), but need to create database schema now.
I'm thinking of limiting passwords to 4-20 characters, but as I understand after ...
23
votes
1answer
517 views
Code exercising the unique possibilities of each edge of the lambda calculus
I can't explain the term lambda cube much better than Wikipedia does:
[...] the λ-cube is a framework for exploring the axes of refinement in
Coquand's calculus of constructions, starting from ...
23
votes
6answers
943 views
What is Scala's “powerful” type system?
When Scala is discussed, the type system is always mentioned as one of the primary features. It is referred to as powerful, and the primary reason for the language moniker (Scala being short for ...
23
votes
3answers
536 views
What's the difference between `1L` and `1`?
I often seen the symbol 1L (or 2L, 3L, etc) appear in R code. Whats the difference between 1L and 1? 1==1L evaluates to TRUE. Why is 1L used in R code?