Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

28
votes
5answers
1k views

Is `long` guaranteed to be at least 32 bits?

By my reading of the C++ Standard, I have always understood that the sizes of the integral fundamental types in C++ were as follows: sizeof(char) <= sizeof(short int) <= sizeof(int) <= ...
23
votes
5answers
68k 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 ...
18
votes
8answers
7k views

Generate random values in C#

How can I generate random Int64 and UInt64 values using the Random class in C#?
17
votes
4answers
20k views

long long in C/C++

I am trying this code on GNU c++ compiler and unable to understand its behaviour #include <stdio.h> int main() { int num1 = 1000000000 ; long num2 = 1000000000 ; long long num3 ; //num3 ...
17
votes
3answers
6k views

wordwrap a very long string

How can you display a long string, website address, word or set of symbols with automatic line breaks to keep a div width? I guess a wordwrap of sorts. Usually adding a space works but is there a CSS ...
13
votes
5answers
5k views

Maximum value of long number?

I'm trying to declare a long value in Java, which unfortunately does not work. This is my code. It results in the following error message: "The literal 4294967296 of type int is out of range". long ...
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?
11
votes
4answers
2k views

Why can't your switch statement data type be long, Java?

Here's an excerpt from Sun's Java tutorials: A switch works with the byte, short, char, and int primitive data types. It also works with enumerated types (discussed in Classes and Inheritance) and ...
11
votes
6answers
970 views

Answer to a practice interview question

I'm just going through a bunch of C++ interview questions just to make sure there's nothing obvious that I don't know. So far I haven't found anything that I didn't know already, except this: long ...
10
votes
8answers
978 views

How can I check if multiplying two numbers in Java will cause an overflow?

I want to handle the special case where multiplying two numbers together causes an overflow. The code looks something like this: int a = 20; long b = 30; // if a or b are big enough, this result ...
9
votes
5answers
464 views

Why is (long)9223372036854665200d giving me 9223372036854665216?

I know about weird stuff with precision errors, but I can't fathom, Why is (long)9223372036854665200d giving me 9223372036854665216 ?
9
votes
6answers
347 views

Python: Is there a way to keep an automatic conversion from int to long int from happening?

Python is more strongly typed than other scripting languages. For example, in Perl: perl -E '$c=5; $d="6"; say $c+$d' #prints 11 But in Python: >>> c="6" >>> d=5 >>> ...
9
votes
9answers
5k views

Java: Checking if a bit is 0 or 1 in a long

Given that : 0000000000000000000000000000000000000000000000000000000000000001 = 1 What method would you use to determine if the the bit that represents 2^x is a 1 or 0 ?
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?
8
votes
2answers
1k views

IEEE-754 Double (64-bit floating point) vs. Long (64-bit Integer) Revisited

I'm revisiting a question (How to test if numeric conversion will change value?) that as far as I was concerned was fully solved. The problem was to detect when a particular numeric value would ...
8
votes
7answers
509 views

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. One thing that I've never understood though is the 'long' data type. I googled it but I still don't ...
7
votes
1answer
73 views

Objective C strange decimal to long long conversion

NSLog(@"%llu\n\n", ULONG_LONG_MAX); NSDecimalNumber *decimal = [NSDecimalNumber decimalNumberWithString:@"154550038129946620"]; NSLog(@"%@", decimal); NSLog(@"%llu\n\n", [decimal ...
7
votes
2answers
270 views

Why does Math.ceil return a double?

This one threw me for a loop for a bit. When I call Math.ceil(5.2) the return is the double 6.0. My natural inclination was to think that Math.ceil(double a) would return a long. From the ...
7
votes
4answers
15k views

How to printf “unsigned long” in C?

I can never understand how to print unsigned long datatype in C. Suppose boo is an unsigned long, then I try: printf("%lu\n", unsigned_boo) printf("%du\n", unsigned_boo) printf("%ud\n", ...
7
votes
2answers
5k views

Android: long click on the child views of a ExpandableListView?

ExpandableListView has a setOnChildClickListener method, but lacks of setOnChild*Long*ClickListener method. When I added setOnLongClickListener() on child view in getChildView(), whole sublist became ...
7
votes
4answers
2k views

Python type long vs C 'long long'

I would like to represent a value as a 64bit signed long, such that values larger than (2**63)-1 are represented as negative, however Python long has infinite precision. Is there a 'quick' way for me ...
7
votes
7answers
7k views

Java's L number (long) specification question

It appears that when you type in a number in java, the compiler automatically reads it as an integer, which is why when you type in (long) 6000000000 (not in Integer's range) it will complain that ...
6
votes
2answers
202 views

Double.doubleToLongBits equivalent in C#?

there's a Java method Double.doubleToLongBits that basically gets a double and return a long with the same bits. How can I do it in C#? Thank you
6
votes
2answers
271 views

Find long (>255) filenames

There are some folder with more than 100 files on it. But all files and folders names broken with wrong encoding names (UTF->ANSI). "C:\...\Госдача-Лечебни ...
6
votes
3answers
415 views

what is the use of Long.reverse(long ) method?

I found one method in Long class public static long reverse(long i) {..} What is the use of this method?
6
votes
8answers
2k views

How to handle arbitrarily large integers

I'm working on a programming language, and today I got the point where I could compile the factorial function(recursive), however due to the maximum size of an integer the largest I can get is ...
5
votes
4answers
86 views

Long + Long not bigger than Long.MAX_VALUE

If I have an assignement Long c = a + b; Is there an easy way to check that a + b is not bigger/smaller than Long.MAX_VALUE/Long.MIN_VALUE?
5
votes
3answers
131 views

How to use Long data type in C?

I'm a little confused as to how longs work in C. If I ask for the maximum value of a long in Java I get a number in the quintillions. If I ask for it in C, signed or unsigned, it's in the billions. ...
5
votes
4answers
235 views

Representing a 64 bit integer in GNU/Linux

I am using Ubuntu 10.10 (64 bit) with gcc and I wanted to use a 64 bit integer in my C++ program. On my system the outputs of sizeof(long), sizeof(long long int) and sizeof(int64_t) are all 8 bytes ...
5
votes
1answer
161 views

java why is long value in if statement validated wrong

In the below code the if statement evaluates to true but i can see its false. Clearly there is a logic here to explain this but i cannot remember it. 2 movies showing the phenomenology: ...
5
votes
6answers
251 views

Java Convert Long to Date?

I have list with long values (for example: 1220227200, 1220832000, 1221436800...) which I downloaded from web service. I must convert it to Dates. Unfortunately this way, for example: Date d = new ...
5
votes
3answers
333 views

Initialize a long in Java

This says the range of long in Java is -9,223,372,036,854,775,808 to 9,223,372,036,854,775,807. But when I do something like this in my eclipse long i = 12345678910; its shows me "The literal ...
5
votes
5answers
116 views

What is the historical context for long and int often being the same size?

According to numerous answers here, long and int are both 32 bits in size on common platforms in C and C++ (Windows & Linux, 32 & 64 bit.) (I'm aware that there is no standard, but in ...
5
votes
1answer
188 views

How to find N longest lines in a text file and print them to stdout?

The first line contains the value of the number 'N' followed by multiple lines. I could solve it in order of n^2 algorithm. Can someone suggest a better one?
5
votes
2answers
387 views

Unsigned long and bit shifting

I have a problem with bit shifting and unsigned longs. Here's my test code: char header[4]; header[0] = 0x80; header[1] = 0x00; header[2] = 0x00; header[3] = 0x00; unsigned long l1 = 0x80000000UL; ...
5
votes
3answers
397 views

Strtol() and atol() do not convert strings larger than 9 digits

while working on an application that requires converting strings to long numbers the atol() and strtol() could not convert any string larger than 9 digits correctly. strtol would prompt a number that ...
5
votes
2answers
2k views

warning: left shift count >= width of type

I'm very new to dealing with bits and have got stuck on the following warning when compiling: 7: warning: left shift count >= width of type My line 7 looks like this unsigned long int x = 1 ...
5
votes
1answer
141 views

Why is the Stream.Position a long

I'm was messing around with some parsing of a binary file when I came across something I was wondering about. The Stream.Positionproperty is of the type Int64or long. Why is this? Shouldn't it make ...
5
votes
2answers
3k views

maximum float in python

I think the maximum integer in python is available by calling sys.maxint, whereas the maximum float or long, what is it?
5
votes
3answers
334 views

How is 64-bit math accomplished on a 32-bit machine?

If a 32-bit processor is, indeed, really only 32 bits in length, then how can math operations work on 64-bit numbers? For example: long lngTemp1 = 123456789123; long lngTemp2 = lngTemp1 * 123; ...
5
votes
4answers
4k views

Java: random long number in 0 <= x < n range

Random class has a method to generate random int in a given range. For example: Random r = new Random(); int x = r.nextInt(100); This would generate an int number more or equal to 0 and less than ...
5
votes
4answers
593 views

How do I include extremely long literals in C++ source?

I've got a bit of a problem. Essentially, I need to store a large list of whitelisted entries inside my program, and I'd like to include such a list directly -- I don't want to have to distribute ...
5
votes
3answers
512 views

long vs Guid for the Id (Entity), what are the pros and cons

I am doing a web-application on asp.net mvc and I'm choosing between the long and Guid data type for my entities, but I don't know which one is better. Some say that long is much faster. Guid also ...
5
votes
3answers
2k views

What to do when you need to store a (very) large number?

Hey, I am trying to do a project euler problem but it involves adding the digits of a very large number. (100!) Using java, int and long are too small. Thanks for any suggestions
4
votes
3answers
575 views

What is the modulo operator for longs in Java?

How do I find the modulo (%) of two long values in Java? My code says 'Integer number too large' followed by the number I'm trying to mod. I tried casting it to a long but it didn't work. Do I have to ...
4
votes
2answers
2k views

c# isn't a Int64 equal to a long?

I have been playing around with SQL and databases in C# via SqlCeConnection. I have been using ExecuteReader to read results and BigInt values for record ID's which are read into Longs. Today I ...
4
votes
1answer
194 views

Python 256bit Hash function with number output

I need a Hash function with a 256bit output (as long int). First I thought I could use SHA256 from the hashlib but it has an String Output and I need a number to calculate with. Converting the 32 ...
4
votes
3answers
158 views

Why does my SQL statement take N times longer to run when I set a value as a variable?

The first thing i would like to say is that this is not exactly what I am trying to achieve. I have dumbed down this query A LOT to get my question across more clearly. I have a nonclustered index on ...
4
votes
8answers
224 views

int v/s. long in C

On my system, I get: sizeof ( int ) = 4 sizeof ( long ) = 4 When I checked with a C program, both int & long overflowed to the negative after: a = 2147483647; a++; If both can represent the ...
4
votes
2answers
2k views

Long Touch on a surfaceView ( android )

I'm making a game on Android and I need to do certain actions when the users attempts a long press on the screen. Unfortunately I haven't found any methods that works directly with a custom ...

1 2 3 4 5 8