2
votes
5answers
67 views
C unsigned int array and bit shifts
If i have an array of short unsigned ints.
Would shifting array[k+1] left by 8 bits, put 8 bits into the lower half of array[k+1]?
Or do they simply drop off as they have gone ou …
0
votes
5answers
34 views
Is a guid as identity field better in domain-driven design?
Is it easier to implement domain-driven design when using guids as identity fields instead of auto incrementing integers? With guids you don't have to jump to the database to get t …
0
votes
6answers
77 views
Parse CSV string into Array of Integers
I have a text box field inputs 123,145,125 I to separate this field into an array of integers. And validate this field true or false if everything is parsed right.
CODE:
privat …
0
votes
5answers
69 views
Client/Server: Integer always received as 1 (C-programming)
Hi!
I'm building a client and a server program that exchanges data over TCP and I'm having trouble sending an ACK-confirmation from the server back to the client when an operation …
0
votes
3answers
51 views
Random MySQL row with PHP- low system resources.
I'm looking to get a random row from MySQL without using too much time or resources on the system. I don't care about weather the code given is PHP or MySQL based, however please n …
4
votes
3answers
161 views
Java int division confusing me.
I am doing very simple int division and I am getting odd results.
This code prints 2 as expected:
public static void main(String[] args) {
int i = 200;
int hundNum = i / …
0
votes
7answers
321 views
Regex for matching ARGB Color (-44830298)
hey all,
i'm trying to get Color information that i've stored in a text file and then use that color as the forecolor for a label. BUT, at run time when i click the button to do …
-1
votes
3answers
128 views
how to restrict an input in c
I want to prevent my program from any other types of input instead of int. How to check the type of an input without assigning it to a variable? in C
5
votes
2answers
113 views
Java Array Sort descending?
Is there any EASY way to sort an array in descending order like how they have a sort in ascending order in the Arrays class http://www.j2ee.me/javase/6/docs/api/java/util/Arrays.ht …
1
vote
3answers
184 views
How do I declare a string without assigning a value in C++?
I know that for an integer, you can use:
int value;
I tried:
string str;
but Visual C++ gave me an error. How do I declare it without assigning a value, then using cin >&g …
0
votes
4answers
114 views
Concatenating 2 2D arrays in java?
I've got 2 2D arrays, one int and one String, and I want them to appear one next to the other since they have the same number of rows. Is there a way to do this? I've thought about …
1
vote
4answers
209 views
C#: What’s the best way to compare Double and Int?
Hello everybody,
The following code in C# doesn't work:
int iValue = 0;
double dValue = 0.0;
bool isEqual = iValue.Equals(dValue);
So, the question: what's the best way to com …
0
votes
3answers
212 views
how to CAST a double to int in C
I've got a double... say
double d = 25.342;
How can I get the 25 value? ( If it were -12.46 I'd like to get -13)
Thanks!
Manuel
2
votes
4answers
90 views
Is there an advantage on setting tinyint fields when I know that the value will not exceed 255?
Should I choose the smallest datatype possible, or if I am storing the value 1 for example, it doesn't matter what is the col datatype and the value will occupy the same memory siz …
5
votes
5answers
181 views
Strings and ints, implicit and explicit…
Had a coworker ask me this, and in my brain befuddled state I didn't have an answer:
Why is it that you can do:
string ham = "ham " + 4;
But not:
string ham = 4;
If there's …
