A long integer is an integer number, typically twice the size of a standard integer. It is represented by the keyword 'long' in several programming languages.

learn more… | top users | synonyms (1)

0
votes
2answers
52 views

What is the meaning of “l” in some variables initialization - C++

What is the meaning of "l" in some variable initialisations? For example: #define maxpossible (1000000000L) double A = 1L; double B = 999999999l; Is there a difference between "L" and "l"?
2
votes
1answer
65 views

'long long long' is too long for GCC using log4cpp

I am developing a QT application where I use the logging library log4cpp. But now, where the headerfiles of log4pp are included, I get this compiling error: 'long long long' is too long for GCC When ...
1
vote
4answers
65 views

a long bigger than Long.MAX_VALUE

how can i get a long number bigger than Long.MAX_VALUE? i want this method to return true: public static isBiggerThanMaxLong(long l){ return l>Long.Max_value; }
1
vote
3answers
39 views

Multiply long or BigInteger by double without loss of precision

I want to multiply a high precision integer (long or BigInteger) by a small double (think about something > 0 and < 1) and get the arithmetically rounded integer (long or BigInteger) of the exact ...
0
votes
1answer
23 views

Android: SQLite Function Doesn't Return Valid Data [closed]

OK...I'm stumped! I wrote the following code circa 13-Feb-2013 and it has worked perfectly up till a few days ago: /** * Get a count of all resources in the selected Alliance * * @param db ...
0
votes
1answer
37 views

long value to byte[] - Java [duplicate]

I have a decimal number and I would convert it in an array buffer of byte (little endian notation). I try this but I am not sure it is working: ByteBuffer a = ByteBuffer.allocate(4); a.putInt( ...
0
votes
1answer
20 views

ORACLE DECLARE CURSOR for LONG datatyped Column inserting

I want to transfer values in a database to another database. But in my source database there are table with columns with LONG datatype. So i cant simply use the insert command for these LONG typed ...
1
vote
2answers
63 views

How to get an unsigned long from a byte array

I have an incoming byte array from a piece of test equipment. The byte array can either be two or four bytes long. I wrote the following code to convert these byte array's into unsigned longs: ...
0
votes
3answers
31 views

How can I NOT truncate a long int/float when printing in Python

I have a long int and I don't want it to be truncated when I print it or convert it to a string. The following does not work: import pandas as pd b = pd.Series({"playerid": 544911367940993}, ...
0
votes
1answer
26 views

Python implementing pow() for exponentiation by squaring for very large integers

I'm trying to roll my own pow() which goes over a binary bit by bit using exponentiation by squaring http://en.wikipedia.org/wiki/Exponentiation_by_squaring. There were some questions in this area if ...
1
vote
1answer
19 views

Treemap put seems to be deleting entries

I am attempting to use a treemap with an unsigned long comparator. However, the treemap's put seems to be deleting entires. Without the comparator, it works just fine but I can't seem to figure out ...
0
votes
1answer
21 views

Comparison method violates its general contract, with long comparsion

Collections.sort(cells, new Comparator<MyCell>() { @Override public int compare(MyCell o1, MyCell o2) { if (o1.getX() <= o2.getX() && o1.getY() <= ...
-1
votes
3answers
95 views

Python: Number ranges that are extremely large?

val = long(raw_input("Please enter the maximum value of the range:")) + 1 start_time = time.time() numbers = range(0, val) shuffle(numbers) I cannot find a simple way to make this work with ...
0
votes
2answers
25 views

org.json.JSONObject.getLong gives imprecise result

In android, as we can see attached figure, the json that I received from server is "id=-705156352446547*2446*" but the code jsonObject.getLong("id") gives -705156352446547*2512*. I can see every ...
2
votes
1answer
50 views

Jscrollpane moving content around

I'm a new poster but have used Staockoverflow many a time for help in a tricky situation but this time after much searching and hair pulling I think I need to post. I'm using Jscrollpane to style a ...
2
votes
0answers
43 views

Long polling in SERVICE STACK

We have developed a C# Webservice in Service stack. In this whenever we get a request for checking the availability of a Data we need to check in the Database and return the result. If data is not ...
0
votes
4answers
69 views

How do you create a big array?

I notice that when you create an array, it can only go up to the size of an int since that is the only thing it accepts. How do I create one that fits the size of a long?
0
votes
1answer
39 views

Android NDK passing long values to native method

This is my function: Long Java_my_package_MainActivity_getDistance(JNIEnv* env, jobject obj, Long a_id1,Long a_id2) { char temp[128]; sprintf(temp,"ID1: %u , ID2: %u",a_id1, ...
-1
votes
2answers
48 views

Create Long variable Javascript

I need to create a Long variable using JavaScript, like you can do normally in Java by executing this code: long n = 3; My problem is that I need "n" to be very very big, exceeding the range of an ...
1
vote
0answers
56 views

python scipy weave long integer

I'm using scipy.weave to improve the performance of my python code. Basically, I have to go through a long array (1024^3,3) -i.e. an array containing 1024^3 elements, with each element having 3 ...
7
votes
1answer
271 views

What is 1LL or 2LL in C and C++?

I was looking at some of the solutions in Google Code Jam and some people used this things that I had never seen before. For example, 2LL*r+1LL What does 2LL and 1LL mean? Their includes look like ...
0
votes
1answer
58 views

Wrong number in assembly

I got a question, because long should store 32 bits, eax should store 32 bits as well. But why it doesn't store up to 4mln? Instead of 4,000,000,000 it prints me -294967296 all the time. Anyone got ...
0
votes
2answers
54 views

How can I do binary search in java ArrayList<Long>?

I am trying to make binary search in ArrayList, but the binarySearch method does not work for Long, as well as Double and Float. My code is import java.util.*; public class BinarySearchInArrayList{ ...
1
vote
2answers
152 views

What is wrong about this code in Scala? (Long required)

I'm newbie in using Scala, and most of the time I don't know how to deal with error messages. Can someone help me with this code? What do I need to change to make this code work? Btw, I'm writing ...
0
votes
2answers
39 views

looping with an index/counter that will exceed its type's max value

So, i was trying this piece of code. It has no output or any warning messages. i am wondering what does the gcc compiler do underneath? int k; for(k=INT_MAX; k< LONG_MAX; k++){ ...
1
vote
1answer
52 views

long double increment operator not working on large numbers

I'm converting a C++ system from solaris (SUN box and solaris compiler) to linux (intel box and gcc compiler). I'm running into several problems when dealing with large "long double" values. (We use ...
1
vote
5answers
132 views

printf char* pointer which points to long and float

I am doing some exercises from book "Understanding pointers in C". The book gives you a piece of code and asks you for what you get in output. One of them is the following: #include <stdio.h> ...
1
vote
4answers
96 views

Why does this code go into infinite loop

This function below checks to see if an integer is prime or not. I'm running a for loop from 3 to 2147483647 (+ve limit of long int). But this code hangs, can't find out why? #include<time.h> ...
1
vote
2answers
29 views

using dataset.addSeries with a Long[] values [duplicate]

The arguments that dataset.addSeries takes are as follows (java.lang.Comparable key, double[] values, int bins, double minimum, double maximum) ...
2
votes
1answer
55 views

Long type Integer calculation

i am now making a source code that calculates long integers, but I don't know why this calculation gives me wrong answer. long l; //variable l is where you input long, signed int l *= 0x6869L; if(l ...
4
votes
2answers
77 views

Why do integer datatypes overflow silently rather than throwing exception

I have learnt(atleast in java) that integer/long values overflow silently and their values start over from minimum value on overflow rather than throwing any exception. I was using an external api ...
-1
votes
1answer
38 views

What variable type can hold 10^100? [duplicate]

I need a variable to hold a number up to 10^100. Will an Integer hold that or is their another variable type I should use? I am using Visual Studio 2012 and VB.net
0
votes
2answers
23 views

How to scan multi-line input with lex

A standard way of saving long lines in a file is to split them into shorter sub-lines and end each sub-line except the last with a backslash character. I want to create lex/flex rules to scan such ...
0
votes
2answers
17 views

Doing an operation with an int and a long

I need to get x%16, where x is a long. My compiler gives me the error "possible loss of precision. required: int; found: long." How can I get around this? Edit: Whoops, I didn't realize I ...
1
vote
4answers
76 views

The method write(int) in the type BufferedWriter is not applicable for the arguments (Long)

I am getting the above error when I try this for (int i = 0 ; i < uaCount.get(args[1]).occurrences ; i++) { out.write(uaCount.get(args[1]).singleValues.get(i)); } Occurrences and ...
3
votes
2answers
97 views

Cross platform definition of 64 bit integers in C++ for Windows and Linux

I am trying to write cross-platform code in C++ for Windows(MinGW) and Linux(g++). I was used to define 64 bit integers in Linux as "long", but when I moved to MinGW, the sizeof(long) returned 4 ...
1
vote
0answers
114 views

C# Dictionary ContainsKey/TryGetValue not working

I've looked around for a while and seen plenty of references to modifying GetHashCode() and things when playing with ContainsKey() and TryGetValue() - but all those issues and examples have all been ...
3
votes
6answers
104 views

Bitwise Operations Java - Long to Binary

I found this code for an arithmetic encoder and I'm a bit confused as to where the values mentioned in the comments are coming from. Can anyone go through whats happening in these operations step by ...
3
votes
4answers
57 views

subtracting longs goes wrong

long freeSize = ((Main.maxSPace-Main.usedSpace)*1000*1000); maxSpace = 20000 usedSpace = 8 --> freeSize = -1482836480 Why is this the result negative?
2
votes
3answers
137 views

Long being treated as int in array java

Good afternoon everyone, I am pretty new to java as you will see. But I have defined a variable as a long and when I try to utilize it as one in my array it keeps throwing an error saying my value is ...
-1
votes
2answers
87 views

Under what circumstances can long int be used in C

In my machine, i get the following results: sizeof(long) = 8 sizeof(long int) = 8 So my question is where to use long int and why not just use int?
1
vote
1answer
41 views

How can I write Long[] to a parcel?

I am trying to write a Long[] array to a parcel, but it only accepts a long[] array as an argument. (The method writeLongArray(long[]) in the type Parcel is not applicable for the arguments ...
0
votes
1answer
83 views

Long polling chat system

I know that long polling is the best way for making chat updates its contents and i know about web-socket but i think that long polling is best because many browsers doesn't support web-socket . The ...
2
votes
3answers
44 views

Typecasting Different Types into One Type

long is a 64-bit signed two's complement integer. Is Long a 128-bit signed two's complement integer? I just wanted to confirm this before proceeding. Long l = 6; int i = 4; Integer ii = 2; l += (l/i) ...
0
votes
2answers
75 views

passing number of type long long into a function (reference vs value) (C++)

I am new to the use of numbers that aren't doubles or ints. I know that passing an int or double should be passed by value (with consideration to memory/speed) but I am not sure about how to pass the ...
0
votes
1answer
60 views

abort both jquery long polling and php

I'm using long polling with jquery. I can abort any ajax requests by simple doing ajax_request.abort(), but what should i do to stop PHP process running which was called by ajax call? p.s. my while ...
0
votes
2answers
57 views

Reading in positive long integer values into an array

I'm looking to read in a file of type .dat. I do not know the size of the file, however I do know that the contents will be in the form of 111000111 0101 0100 1 0011 110 0010 101 0001 11 0000 ...
0
votes
2answers
64 views

Problems with LONG NAMES (PHP): how to place 3 DOTS (…) at the end of a fixed SPACE LENGTH

We are having difficulties displaying LONG NAMES on our website and would need help urgently. We actually need to place IMAGE NAMES under IMAGES that have a FIXED WIDTH. Because image names are ...
2
votes
2answers
71 views

Comparing the wrapper types in Java

I have two java.util.List as follows. List<Long> items = new ArrayList<Long>(){{ add(141L); add(142L); }}; List<Long> itemsExist = new ArrayList<Long>(){{ ...
0
votes
1answer
107 views

Convert Long date to specific short date format

Convert Long date format to specific short date format. I want to get the Date from Datepicker(Jcalander) , format to dd-mm-yyyy format and assign to String variable. I tried using codes shown below. ...

1 2 3 4 5 14