Tagged Questions

The int is a data-type that represents a whole number. It only goes up to a certain value, then you must use a long.

learn more… | top users | synonyms

88
votes
10answers
112k views

Python - Parse String to Float or Int

This should be simple - In python, how can I parse a numeric string like "545.2222" to its corresponding float value, 542.2222 or "31" to an integer, 31? EDIT: I just wanted to know how to parse a ...
78
votes
4answers
3k views

Why is “int i = 2147483647 + 1;” OK, but “byte b = 127 + 1;” is not compilable?

Why is int i = 2147483647 + 1; OK, but byte b = 127 + 1; is not compilable?
59
votes
18answers
67k views

C++ concatenate string and int

I thought this would be really simple but it's presenting some difficulties. If I have string name = "John"; int age = 21; How do I combine them to get a single string "John21"?
49
votes
6answers
1k views

Strange behavior when casting a float to int in C#

I have the following simple code : int speed1 = (int)(6.2f * 10); float tmp = 6.2f * 10; int speed2 = (int)tmp; speed1 and speed2 should have the same value, but in fact, I have : speed1 = 61 ...
48
votes
8answers
3k views

Which is faster : if (bool) or if(int)?

Which value is better to use? Boolean true or Integer 1? The above topic made me do some experiments with bool and int in if condition. So just out of curiosity I wrote this program: int f(int ...
37
votes
7answers
2k views

Why is Array.Length an int, and not an uint

Why is Array.Length an int, and not an uint. This bothers me (just a bit), because a length value can never by negative. This also forced me to use an int for a length-property on my own class, ...
35
votes
6answers
1k views

In Java, is the result of the addition of two chars an int or a char?

When adding 'a' + 'b' it produces 195. I asked on StackOverflow IRC channel they say the output datatype is char. I think it is int and some others do as well. What is the correct answer?
34
votes
3answers
960 views

unsigned int (c++) vs uint (c#)

Following is the c# code: static void Main(string[] args) { uint y = 12; int x = -2; if (x > y) Console.WriteLine("x is greater"); else ...
24
votes
4answers
779 views

In C, why is sizeof(char) 1, when 'a' is an int?

I tried printf("%d, %d\n", sizeof(char), sizeof('a')); and got 1, 4 as output. If size of a character is one, why does 'c' give me 4? I guess it's because it's an integer. So when I do char ch = ...
23
votes
5answers
834 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 ...
23
votes
5answers
69k views

How do I convert from int to long in Java?

I keep finding both on here and Google people having troubles going from long to int and not the other way around. Yet I'm sure I'm not the only one that has run into this scenario before going from ...
22
votes
6answers
1k views

Integer.parseInt(“1”) ++ - why doesn't this work in java?

I've got the following line of code: suffix = suffix.isEmpty() ? "1" : Integer.toString(Integer.parseInt(suffix)+1); in a block where suffix has already been declared as an empty String (""). The ...
18
votes
10answers
36k views

C# How do I convert a decimal to an int?

How do I convert a decimal to an int? Ta
17
votes
4answers
307 views

Why do I have to assign a value to an int in C# when defaults to 0?

This works: class MyClass { int a; public MyClass() { int b = a; } } But this gives a compiler error ("Use of unassigned local variable 'a'"): class MyClass { public ...
16
votes
6answers
1k views

What is the maximum value of an unsigned 64-bit integer in English? [closed]

What is the maximum value of an unsigned 64-bit integer in English?
16
votes
4answers
8k views

Quickest way to convert a base 10 number to any base in .NET?

I have and old(ish) C# method I wrote that takes a number and converts it to any base: string ConvertToBase(int number, char[] baseChars); It's not all that super speedy and neat. Is there a good, ...
14
votes
8answers
19k views

How do you convert a C++ string to an int? [closed]

Possible Duplicate: How to parse a string to an int in C++? How do you convert a C++ string to an int? Assume you are expecting the string to have actual numbers in it ("1", "345", ...
13
votes
4answers
325 views

Boolean vs Int in Javascript

I always assumed that booleans were more efficient than ints at storing an on/off value - considering that's their reason for existence. I recently decided to check if this is true with the help of ...
13
votes
5answers
14k views

Convert String to Int Objective-C?

Really basic iPhone Objective-C question. I'm trying to extract a string (which is really a int) from an array and then use it as an int in a function. I'm trying to convert it to a int using ...
13
votes
3answers
4k views

Why can't I unbox an int as a decimal?

I have an IDataRecord reader that I'm retrieving a decimal from as follows: decimal d = (decimal)reader[0]; For some reason this throws an invalid cast exception saying that the "Specified cast is ...
13
votes
2answers
30k views

Can I convert long to int?

I want to convert long to int. If the value of long > int.MaxValue, I am happy to let it wrap around. What is the best way?
12
votes
3answers
571 views

Comparing two sorted int arrays

I have millions of fixed-size (100) int arrays. Each array is sorted and has unique elements. For each array, I want to find all arrays which have 70% common elements. Right now I am getting around 1 ...
12
votes
5answers
46k views

C# char to int

So I have a char in c#: char foo = '2'; Now I want to get the 2 into an int. I find that Convert.ToInt32 returns the actual decimal value of the char and not the number 2. The following will ...
11
votes
6answers
2k views

What is size_t in C?

I am getting confused with size_t in C. I know that it is returned by the sizeof operator. But what exactly it is? Is it a datatype? Let's say I have a for loop int i; or size_t i; //which one ...
11
votes
2answers
1k views

C++ Confusion. Reading Integer From Text File. Convert to ASCII

I am learning C++ for the first time. I have no previous programming background. In the book I have I saw this example. #include <iostream> using::cout; using::endl; int main() { int x ...
11
votes
3answers
14k views

Convert string to int and test success in C#

How can you check whether a string is convertible to an int? Let's say we have data like "House", "50", "Dog", "45.99", I want to know whether I should just use the string or use the parsed int value ...
11
votes
14answers
27k views

How do you append an int to a string in C++?

int i = 4; string text = "Player "; cout << (text + i); I'd like it to cout "Player 4" ^ The above is obviously wrong but it shows what I'm trying to do here. Is there an easy way to do this ...
10
votes
5answers
4k views

c++ parse int from string [closed]

Possible Duplicate: How to parse a string to an int in C++? I have done some research and some people say to use atio and others say it's bad, and I can't get it to work anyways. So I just ...
10
votes
2answers
736 views

C# int, Int32 and enum's

If int is synonymous to Int32 why does enum MyEnum : Int32 { Value = 1 } ...not compile? Where as enum MyEnum : int { Value = 1 } will, even though hovering the cursor over the int word ...
10
votes
3answers
945 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 / 100; ...
10
votes
4answers
5k views

Java Array HashCode implementation

This is odd. A co-worker asked about the implementation of myArray.hashCode() in java. I thought I knew but then I ran a few tests. Check the code below. The odd think I noticed is that when I ...
9
votes
1answer
2k views

Get color-int from color resource

Is there a way to get a color-int from a color resource? I am trying to get the individual red, blue and green components of a color defined in the resource (R.color.myColor) so that I can set the ...
9
votes
9answers
8k views

Convert boolean to int in Java

What is the most accepted way to convert a boolean to an int in Java?
9
votes
2answers
263 views

C# int byte conversion

Why is byte someVar; someVar -= 3; valid but byte someVar; someVar = someVar - 3; isnt?
9
votes
3answers
1k views

is int? thread safe?

I know that in .net any 32bit type (int, bool, etc) are threadsafe. you know that there won't be a partial write ever (according to the spec). Does the same apply for int? (nullable int)
9
votes
4answers
5k views

What is are differences between Int and Integer in Scala?

I was working with a variable that I had declared as an Integer and discovered that > is not a member of Integer. Here's a simple example: scala> i warning: there were deprecation warnings; re-run ...
9
votes
6answers
6k views

How to use long id in Rails applications?

How can I change the (default) type for ActiveRecord's IDs? int is not long enough, I would prefer long. I was surprised that there is no :long for the migrations - does one just use some decimal?
9
votes
5answers
18k views

Best Way to get Whole Number part of a Decimal Number

What is the best way to return the whole number part of a decimal (in c#)? (This has to work for very large numbers that may not fit into an int). GetIntPart(343564564.4342) >> 343564564 ...
9
votes
7answers
22k views

Parsing Integer to String C

How does one parse an integer to string(char* || char[]) in C? Is there an equivalent String parseInt(int) method from Java in C?
8
votes
8answers
2k views

Cannot implicitly convert type 'int' to 'short'

I wrote the following small program to print out the Fibonacci sequence: static void Main(string[] args) { Console.Write("Please give a value for n:"); Int16 n = ...
8
votes
1answer
152 views

Difference between floats and ints in Javascript?

I'm looking through some of the code from the Google Closure Library and I found this line: var isNegative = number < 0.0 || number == 0.0 && 1 / number < 0.0; I've figured that the ...
8
votes
4answers
248 views

What is the size of a Nullable<Int32>?

So, a couple of questions, actually: An int (Int32) is specified to be (obviously) 32 bits. What about an int? (Nullable<int>)? My gut tells me that it would be 32 bits for the integer plus 8 ...
8
votes
1answer
2k views

Haskell : Type casting Int to String

I know you can convert a String to an number with read like so: Prelude> read "3" :: Int 3 Prelude> read "3" :: Double 3.0 But how do you grab the string representation of an Int value?
8
votes
1answer
201 views

Is this technically thread safe despite being mutable?

Yes, the private member variable bar should be final right? But actually, in this instance, it is an atomic operation to simply read the value of an int. So is this technically thread safe? class Foo ...
8
votes
3answers
7k views

How do i convert String to Integer/Float in Haskell

data GroceryItem = CartItem ItemName Price Quantity | StockItem ItemName Price Quantity makeGroceryItem :: String -> Float -> Int -> GroceryItem makeGroceryItem name price quantity = ...
8
votes
2answers
5k 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.html ? Or do I have ...
7
votes
1answer
102 views

Java: How to get individual int values out of int[][]

I have an int[][] object. It is defined in my code as below: public int[][] position = { {20, 30}, {73, 91}, {82, 38} }; Would it be possible to get the value of the first value (on the ...
7
votes
5answers
180 views

Use uint or int

Definitely, I know the basic differences between unsigned integers (uint) and signed integers (int). I noticed that in .NET public classes, a property called Length is always using signed integers. ...
7
votes
2answers
213 views

Ocaml - string to (int*int*int) list

Is in ocaml function which can parse string like this "[(1,2,3);(1,2,5);(2,3,4)]" into (int*int*int) list ? or do I have to write my own parsing function ? Thanks Greg
7
votes
5answers
375 views

Checking if float is an integer

How can I check if a float variable contains an integer value? So far, I've been using: float f = 4.5886; if (f-(int)f == 0) printf("yes\n"); else printf("no\n"); But I wonder if there is a ...

1 2 3 4 5 20