Top "Long-integer" questions

A long integer is an integer number, typically twice the size of a standard integer.

C# equivalent of 64-bit unsigned long long in C++

I am building a DLL which will be used by C++ using COM. Please let me know what would be …

c# c++ long-integer unsigned ulong
How to break long words in a table td?

This is what I have: <td style='width:500px; white-space: pre-wrap; white-space: -moz-pre-wrap; white-space: -pre-wrap; white-space: -o-pre-wrap; word-wrap: break-word;…

css html-table long-integer words
What's the 'long' data type used for?

I've been programming in C++ for quite a while now and I am pretty familiar with most of the stuff. …

c++ types long-integer
Java: Random long value in an interval

Possible Duplicate: Java: random long number in 0 <= x < n range I want to generate a random long value …

java random long-integer intervals
Why do C compilers specify long to be 32-bit and long long to be 64-bit?

Wouldn't it have made more sense to make long 64-bit and reserve long long until 128-bit numbers become a reality?

c 32bit-64bit long-integer bit long-long
JPA entity id - long or Long

Should the ID of your Entity be long (primitive type) or Long (object type)? The ID is the primary key …

hibernate jpa types entity long-integer
Conversion IPv6 to long and long to IPv6

How should I perform conversion from IPv6 to long and vice versa? So far I have: public static long IPToLong(…

java ip type-conversion ipv6 long-integer
In Swift, how do you convert a String to Int64?

I am loading in lines from a text file with very large numbers. String has the toInt method, but how …

xcode string swift long-integer int64
Long.getLong() failing, returning null to valid string

I've spent the past two hours debugging what seems extremely unlikely. I've stripped the method of a secondary Android Activity …

android string nullpointerexception long-integer string-parsing
How do you get an unsigned long out of a string?

What's the safest and best way to retrieve an unsigned long from a string in C++? I know of a …

c++ long-integer unsigned string-parsing string-conversion