5
votes
4answers
124 views
Why does adding two shorts return an int? [closed]
Possible Duplicate:
byte + byte = int… why?
UPDATE:
As people have pointed out, this question has been asked before: http://stackoverflow.com/questions/941584. Sor …
0
votes
1answer
28 views
CHAR behavior with trailing spaces.
Given the SQL statements below, I would expect the result of the query to be:
|testX|5|
|XXXXX|5|
This is because the column is a char(5) and I would expect it to insert blank t …
0
votes
1answer
30 views
SQL Server 05: Reading values from XML datatype in a query
I'm trying to get all of the attributes and node values from XML in a SQL query.
I tried doing the following, but I'm missing out few values in the output.
Here is what I tried:
…
3
votes
7answers
152 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
sho …
0
votes
5answers
93 views
Is it possible to choose a C++ generic type parameter at runtime?
Is there a way to choose the generic type of a class at runtime or is this a compile-time thing in C++?
What I want to do is something like this (pseudocode):
Generictype type;
i …
9
votes
2answers
100 views
C Puzzle - play with types
Please check the below program.
#include <stdio.h>
struct st
{
int a ;
}
fn ()
{
struct st obj ;
obj.a = 10 ;
return obj ;
}
int main()
{
struct st obj = fn() ;
p …
0
votes
1answer
58 views
How/Why is imagedata stored as char - OpenCV
I'm a tad confused.
I am just getting started with OpenCV and its image data is pointed to by a char pointer. I can't quite work out how that works considering the actual data it …
1
vote
4answers
105 views
Should I use 0/1 or True/False boolean?
0/1 can be flexible and can add options such as "2, 3, 4" in the future.
Does TinyINT in MySQL take up more space than boolean?
Personally, I use 0 and 1 for everything.
You c …
0
votes
5answers
42 views
What T-SQL data type would you typically use for weight and length?
I am designing a table that has several fields that will be used to record weight and lengths.
Examples would be:
5 kilograms and 50 grams would be stored as 5.050.
2 metres 25 cen …
2
votes
6answers
185 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.
Bu …
3
votes
1answer
88 views
Pattern matching data types in Haskell. Short cuts?
In the following Haskell code, how can this be written more succinctly? Is it necessary to list all four conditions, or can these be summarized by a more compact pattern? For ins …
3
votes
1answer
57 views
How do I annotate a JAXB property to use xsd:time rather than xsd:datetime?
I have a JAXB class like this:
public class Game {
private Date startTime;
@XmlElement
public Date getStartTime() {
return startTime;
}
public void s …
1
vote
6answers
82 views
How to make the default value of a type as Nothing?
For example Dim aInt as Integer should have the value as nothing instead of 0.
2
votes
7answers
108 views
Always using custom data types
I'm wondering whether it's insane to (almost) always use custom data types in C# rather than relying on built in types such as System.Int32 and System.String.
For instance, to rep …
0
votes
1answer
12 views
Literal structure for time datatype
I'm working on a DSL that should support a time literal and am interested in two different things:
What language(s) or DSL(s) support a time literal?
How is the literal structure …
