What is Java long long long

I know in Java that "int" is a 32-bit integer, and "long" is an integer of 64. I also know that in C, "long long" has an integer, at least as large as " long "(but implementation specific).

However, I recently met some Java code using "long long" and wanted to know how exactly it was defined?

+4
source share
4 answers

There is no such type in Java. Are you sure the code you read was written in Java? Maybe it was a JNI procedure that was called?

+16
source

I do not know the type of "long long".

it is also not listed here: http://docs.oracle.com/javase/tutorial/java/nutsandbolts/datatypes.html

+2
source

"long long" is not supported in java

+1
source

Support INT-16bit
long 32bit
to calculate a large number, you can use both long and int.

0
source

Source: https://habr.com/ru/post/1397301/


All Articles