Java getProperties

794 Views Asked by At

The command:

System.getProperties().list(System.out);

returns the following:

sun.cpu.isalist=amd64

I can't understand why it's amd64. I have Lenovo with Intel 3i, Win7 (where the code was tested) and Ubuntu. Where is the trick?

Thanks

3

There are 3 best solutions below

0
On

All Intel x64 systems use the Amd64 instruction set under license. In terms of instruction set, its an Amd64.

0
On

AMD was has introduced 64bit CPU instruction first. It is still called AMD64 but meant are both Intel 64 bits and AMD 64 bits x86 processors. A better name would be x86_64...

0
On

The AMD64 is an architecture, like x86 was.

Read more