Types, and type systems, are used to enforce levels of abstraction in programs.

learn more… | top users | synonyms (2)

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 ...
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?
31
votes
3answers
2k 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 ...
43
votes
2answers
12k views

How does Python compare string and int?

The following snippet is annotated with the output (as seen on ideone.com): print "100" < "2" # True print "5" > "9" # False print "100" < 2 # False print 100 < "2" ...
109
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
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 ...
65
votes
2answers
28k 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)); ...
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", ...
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 ...
15
votes
7answers
7k views

Does the size of an int depend on the compiler and/or processor?

this was an interview question! would the size of an integer depend upon the compiler or processor?
36
votes
4answers
16k views

char is signed or unsigned by default

In the book "Complete Reference of C" it is mentioned that char is by default unsigned. But i am trying to verify this with GCC as well as visual studio. It is taking it as signed by default. which ...
29
votes
5answers
2k views

Integer summing blues, short += short problem

Program in C#: short a, b; a = 10; b = 10; a = a + b; // Error : Cannot implicitly convert type 'int' to 'short'. // we can also write this code by using Arithmetic Assignment Operator as given ...
40
votes
8answers
50k views

What is ultimately a time_t typedef to?

I searched in linux box and saw it being typedef to typedef __time_t time_t; But could not find the __time_t definition.
14
votes
8answers
2k views

Are all data pointers of the same size in one platform?

Are char*, int*, long* or even long long* of same size (on a given platform)?
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 ...
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 ...
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 ...
18
votes
7answers
4k views

workarounds for nameof() operator in C#: typesafe databinding

There's been a lot of wishes to include nameof () operator in C#, so that you could do, for instance, nameof (Customer.Name), which will return you "Name". I have a domain object. And I have to bind ...
29
votes
9answers
53k views

Finding the type of an object in C++

I have a class A and another class that inherits from it, B. I am overriding a function that accepts an object of type A as a parameter, so I have to accept an A. However, I later call functions that ...
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#?
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' />?
5
votes
4answers
411 views

Is there a way to refer to the current type with a type variable?

suppose I'm trying to write a function to return an instance of the current type. Is there a way to make T refer to the exact subtype (so T should refer to B in class B)? class A { <T extends ...
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 = ...
30
votes
12answers
11k 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 -- ...
36
votes
5answers
26k views

SqlDateTime.MinValue != DateTime.MinValue, why?

I wonder, why SqlDateTime.MinValue is not the same as DateTime.MinValue?
25
votes
8answers
9k views

Importance of varchar length in MySQL table

I have a MySQL table where rows are inserted dynamically. Because I can not be certain of the length of strings and do not want them cut off, I make them varchar(200) which is generally much bigger ...
64
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 ...
23
votes
6answers
1k views

Why is such a function definition not allowed in haskell?

Shouldn't this definition be allowed in a lazy language like haskell in which functions are curried ? apply f [] = f apply f (x:xs) = apply (f x) xs It's basically a function which applies the ...
14
votes
5answers
6k views

Why can Java Collections not directly store Primitives types?

Java collections only store Objects, not primitive types; however we can store the wrapper classes. Why this constraint?
9
votes
6answers
416 views

In C, what is the correct syntax for declaring pointers?

I vaguely recall seeing this before in an answer to another question, but searching has failed to yield the answer. I can't recall what is the proper way to declare variables that are pointers. Is ...
3
votes
7answers
1k views

Any guaranteed minimum sizes for types in C?

I asked a similar question before but I'm still confused... can you generally make any assumptions about the minimum size of a data type? What I have read so far char: 1 Byte short: 2 Byte int: ...
45
votes
4answers
4k views

What is a higher kinded type in Scala?

You can find the following in the web: Higher kinded type == type constructor? class AClass[T]{...} // e.g. class List[T] some say this is a higher kinded type because it abstracts over ...
42
votes
3answers
3k views

What are type lambdas in Scala and what are their benefits?

Sometime I stumble into the semi-misterious notation of def f[T](..) = new T[({type l[A]=SomeType[A,..]})#l] {..} in Scala blog posts, which give it a "we used that type-lambda trick" handwave. While ...
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 ...
25
votes
10answers
12k views

.NET Integer vs Int16?

I have a questionable coding practice. When I need to iterate through a small list of items whose count limit is under 32000, I use Int16 for my i variable type instead of Integer. I do this because ...
19
votes
4answers
18k views

Generics in C#, using type of a variable as parameter

I have a generic method bool DoesEntityExist<T>(Guid guid, ITransaction transaction) where T : IGloballyIdentifiable; How do I use the method in the following way: Type t = ...
16
votes
4answers
10k views

Php PDO::bindParam data types.. how does it work?

I'm wondering what the declaration of the data type in the bind parameter (or value) is used for... I mean, I thought that if I define a param like int, PDO::PARAM_INT, the param must be converted to ...
3
votes
4answers
4k views

What are the differences between value types and reference types in C#? [duplicate]

I know a few differences, Value types are stored on the stack where as reference types are stored on the managed heap. Value type variables directly contain their values where as reference variables ...
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 ...
48
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) == ...
26
votes
6answers
1k views

Enforce type difference

In Scala I can enforce type equality at compile time. For example: case class Foo[A,B]( a: A, b: B )( implicit ev: A =:= B ) scala> Foo( 1, 2 ) res3: Foo[Int,Int] = Foo(1,2) scala> Foo( 1, ...
28
votes
6answers
17k views

Datatype for storing ip address in SQL Server

What datatype should i choose for storing an Ip Address in a SQL Server? By selecting the right datatype would it be easy enough to filter by IP address then?
47
votes
5answers
4k 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 ...
32
votes
9answers
96k views

String was not recognized as a valid DateTime “ format dd/MM/yyyy”

I am trying to convert my string formated value to date type with format dd/MM/yyyy. this.Text="22/11/2009"; DateTime date = DateTime.Parse(this.Text); What is the problem ? It has a ...
17
votes
28answers
4k views

What is cool about generics, why use them?

I thought I'd offer this softball to whomever would like to hit it out of the park. What are generics, what are the advantages of generics, why, where, how should I use them? Please, keep it fairly ...
33
votes
4answers
55k views

long long in C/C++

I am trying this code on GNU's C++ compiler and am unable to understand its behaviour: #include <stdio.h>; int main() { int num1 = 1000000000; long num2 = 1000000000; long long ...
38
votes
5answers
30k views

Limit file format when using <input type=“file”>?

I'd like to restrict the type of file that can be chosen from the native OS file chooser when the user clicks the Browse button in the <input type="file"> element in HTML. I have a feeling it's ...
21
votes
7answers
8k views

Is char guaranteed to be exactly 8-bit long in C?

That's all. Didn't find any similar topic so bear with me it there is.
9
votes
3answers
14k views

ASP.NET : How to detect file upload Mime type?

How do people usually detect mime type once file uploaded using asp.net?
15
votes
3answers
8k views

Difference between “var” and “object” in C#

Is the var type an equivalent to Variant in VB? When object can accept any datatype, what is the difference between those two?

1 2 3 4 5 20