Top "Integer" questions

Common datatype in many programming languages for representing a whole number.

Integer.valueOf() vs. Integer.parseInt()

Aside from Integer.parseInt() handling the minus sign (as documented), are there any other differences between Integer.valueOf() and Integer.…

java string integer decimal-point
PostgreSQL: ERROR: operator does not exist: integer = character varying

Here i am trying to create view as shown below in example: Example: create view view1 as select table1.col1,…

postgresql casting integer varchar
Integer value comparison

I'm a newbie Java coder and I just read a variable of an integer class can be described three different …

java integer int equals autoboxing
from list of integers, get number closest to a given value

Given a list of integers, I want to find which number is the closest to a number I give in …

python list sorting integer
Generate unique random numbers between 1 and 100

How can I generate some unique random numbers between 1 and 100 using JavaScript?

javascript random integer numbers
%i or %d to print integer in C using printf()?

I am just learning C and I have a little knowledge of Objective-C due to dabbling in iOS development, however, …

c console integer int printf
What is the difference between “int” and “uint” / “long” and “ulong”?

I know about int and long (32-bit and 64-bit numbers), but what are uint and ulong?

c# types integer unsigned signed
Convert string with comma to integer

Is there any neat method to convert "1,112" to integer 1112, instead of 1? I've got one, but not neat: "1,112".split(',').…

ruby integer data-conversion
Python integer division yields float

Python 3.1 (r31:73574, Jun 26 2009, 20:21:35) [MSC v.1500 32 bit (Intel)] on win32 Type "help", "copyright", "credits" or "license" for more information. >>&…

python integer python-3.x division
T-sql - determine if value is integer

I want to determine if a value is integer (like TryParse in .NET). Unfortunatelly ISNUMERIC does not fit me because …

sql-server tsql casting integer isnumeric