Types, and type systems, are used to enforce levels of abstraction in programs.
360
votes
6answers
52k views
“What part of Milner-Hindley do you not understand?”
I can't find it now, but I swear there used to be a T-shirt for sale featuring the immortal words:
What part of
do you not understand?
In my case, the answer would be... all of it!
In ...
264
votes
0answers
56k views
String vs string in C# [duplicate]
Possible Duplicate:
In C# what is the difference between String and string
In C# the string keyword (highlighted in Visual Studio as a data type) is just a shortcut to the String class ...
160
votes
7answers
64k views
What's the canonical way to check for type in python?
What is the best way to check whether a given object is of a given type? How about checking whether the object inherits from a given type?
Let's say I have an object o. How do I check whether it's a ...
155
votes
8answers
27k 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?
145
votes
3answers
4k views
Return type of '?:' (ternary conditional operator)
Why does the first return a reference?
int x = 1;
int y = 2;
(x > y ? x : y) = 100;
While the second does not?
int x = 1;
long y = 2;
(x > y ? x : y) = 100;
Actually, the second did not ...
140
votes
4answers
73k 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 ...
122
votes
4answers
79k 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.
122
votes
7answers
136k views
How to determine the variable type in Python?
How do I see the type of a variable whether it is unsigned 32 bit, signed 16 bit, etc.?
How do I view it?
117
votes
9answers
6k views
Does “untyped” also mean “dynamically typed” in the academic CS world?
I'm reading a slide deck that states "JavaScript is untyped." This contradicted what I thought to be true so I started digging to try and learn more.
Every answer to Is JavaScript an untyped ...
111
votes
5answers
24k 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 = ...
110
votes
15answers
119k views
Check whether variable is number or string in javascript
Does anyone know how can I check whether a variable is a number or a string in javascript?
110
votes
18answers
81k views
How to check if a number is float or integer?
how to find if a number is float or integer?
1.25 --> float
1 --> integer
0 --> integer
0.25 --> float
108
votes
7answers
5k 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' ...
107
votes
3answers
41k views
In Objective-C, what is the equivalent of Java's “instanceof” keyword?
I would like to check whether an object (e.g. someObject) is assignable (cast-able) to a variable of another type (e.g. SpecifiedType). In Java, I can write:
someObject instanceof SpecifiedType
A ...
99
votes
5answers
29k 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 ...
95
votes
9answers
72k 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 ...
92
votes
9answers
52k views
What is the difference between Bool and Boolean types in C#
What is the difference between Bool and Boolean types in C#?
79
votes
7answers
72k 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", ...
70
votes
3answers
49k 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 <input type='button' /> and <input type='submit' />?
68
votes
9answers
50k 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 ...
67
votes
11answers
3k 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 = ...
67
votes
2answers
2k views
What is the combinatory logic equivalent of intuitionistic type theory?
I recently completed a university course which featured Haskell and Agda (a dependent typed functional programming language), and was wondering if it was possible to replace lambda calculus in these ...
65
votes
3answers
12k views
Storing a hashed password (Bcrypt) in a Database - type/length of column?
I want to store a hashed password (using BCrypt) in a database. What would be a good type for this, and which would be the correct length? Are passwords hashed with BCrypt always of same length?
EDIT
...
65
votes
1answer
5k views
Scala 2.10: What is a TypeTag and how do I use it?
All I know about TypeTags is that they somehow replaced Manifests. Information on the Internet is scarce and doesn't provide me with a good sense of the subject.
So I'd be happy if someone shared a ...
65
votes
2answers
29k views
Size of character ('a') in C/C++
What is the size of character in C and C++ ? As far as I know the size of char is 1 byte in both C and C++.
In C :
#include <stdio.h>
int main(){
printf("Size of char : %d\n",sizeof(char));
...
63
votes
4answers
2k views
How to define different types for the same class in C++
I would like to have several types that share the same implementation but still are of different type in C++.
To illustrate my question with a simple example, I would like to have a class for Apples, ...
59
votes
8answers
42k 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 ...
57
votes
6answers
5k 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 ...
57
votes
9answers
10k 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 ...
55
votes
6answers
18k views
python: list vs tuple, when to use each?
In Python, when should you use lists and when tuples?
Sometimes you don't have a choice, for example if you have
"hello %s you are %s years old" % x
then x must be a tuple.
But if I am the one ...
54
votes
9answers
6k 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 ...
54
votes
2answers
4k 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
53
votes
8answers
7k 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 ...
53
votes
7answers
2k views
C# - Is it possible to save a Type (using “typeof()”) in an enum?
So I'm creating a game in XNA, C# 4.0, and I need to manage a lot of PowerUps (which in code are all inherited from class "PowerUp"), and to handle back-end management of the PowerUps I currently have ...
53
votes
3answers
24k views
PostgreSQL: Difference between text and varchar (character varying)
What's the difference between the text data type and the character varying (varchar) Data types?
According to the documentation,
If character varying is used without length specifier, the type ...
52
votes
5answers
6k 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 ...
51
votes
6answers
24k views
C# string reference type?
I know that "string" in C# is a reference type. This is on MSDN. However, this code doesn't work as it should then:
class Test
{
public static void Main()
{
string test = "before ...
50
votes
1answer
3k 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 ...
49
votes
10answers
27k views
What is the best (idiomatic) way to check the type of a Python variable? [duplicate]
I need to know if a variable in Python is a string or a dict. Is there anything wrong with the following code?
if type(x) == type(str()):
do_something_with_a_string(x)
elif type(x) == ...
48
votes
3answers
2k views
Are HLists nothing more than a convoluted way of writing tuples?
I hope the provocative title caught your attention :-) Despite the first impression that this may leave, I am really interested in finding out where the differences are, and more generally, to ...
36
votes
5answers
26k views
SqlDateTime.MinValue != DateTime.MinValue, why?
I wonder, why SqlDateTime.MinValue is not the same as DateTime.MinValue?
14
votes
3answers
241 views
Difference between class and type
Being new to Java, I'm confused between the concepts of class and type.
For example, should the object "Hello World!" belong to the type String or class String? Or maybe both?
4
votes
1answer
540 views
iOS 6 throwing error when using Google's OAuth
Over the weekend I upgraded my version of xcode to the newest version, and the latest SDK (iOS 6.0). This morning when I went into it to take a look at how our app had faired in the transition, I ...
4
votes
0answers
55 views
Can the type checker help me out here? With type families, maybe?
So I'm writing this little soccer game for some time now, and there's one thing that bugs me from the very beginning. The game follows the Yampa Arcade pattern, so there's a sum type for the "objects" ...
1
vote
1answer
385 views
New Payload type for RTP profile
I am designing a new RTP profile. How can I determine the next available RTP payload type, which I can assign to my profile type?
0
votes
4answers
6k views
Why int32 has max value 2^31 -1 [duplicate]
Possible Duplicate:
2's Complement - Defined
I know int32 is has a lenght of 32 bytes. I assume it has 2^32 values but as half of them needs to be under zero, I guess it has something ...
0
votes
3answers
54 views
Why does is declaration of a string variable in Java capitalized?
In Java, when one declares a string variable the word "String" is capitalized, yet it isn't in any of the other types I've run across. Why is this? Was it just some weird arbitrary decision by the ...
0
votes
2answers
95 views
Is static typing a subset of dynamic typing?
I was going to add this as a comment to my previous question about type theory, but I felt it probably deserved its own exposition:
If you have a dynamic typing system and you add a "type" member to ...
0
votes
5answers
866 views
Byte datatype in Objective C in iPhone
I want to send the bytes to the server. So i donno Which data types is used for bytes. I have used "%s" and sent the bytes to the server. But In server side they have received 6 bytes only. But my ...
0
votes
1answer
141 views
mdadm disk partition type : Linux RAID Autodetect mandatory or 83 Linux ok?
Main question : Q1:
i would like to know when using mdadm, the "Linux RAID Autodetect" type is mandatory for my disk, or a "83 linux" type is ok ?
Sub question : Q1_1 :
What are the differences ?
...