2016-08-07

← Older revision

Revision as of 18:04, August 7, 2016

Line 1:

Line 1:

[[File:Java logo.svg|right|Java logo]]

[[File:Java logo.svg|right|Java logo]]



'''Java''' is an object-oriented
[[wikipedia:Programming language
|programming language
]]
originally developed by
[[wikipedia:James Gosling
|James Gosling
]]
at
[[wikipedia:Sun Microsystems
|Sun Microsystems
]]
. It was released in 1995 as a core component of Sun Microsystems' Java platform. Oracle currently develops the language and JVM for Windows, Solaris, Linux and Mac OS X.

+

'''Java''' is an object-oriented
{{WP
|programming language
}}
originally developed by
{{WP
|James Gosling
}}
at
{{WP
|Sun Microsystems
}}
. It was released in 1995 as a core component of Sun Microsystems' Java platform. Oracle currently develops the language and JVM for Windows, Solaris, Linux and Mac OS X.

Java can run on most popular operating systems as it compiles code into platform independent, low-level byte-code via the Java Virtual Machine that (which is platform specific) translates this byte-code into native instructions.

Java can run on most popular operating systems as it compiles code into platform independent, low-level byte-code via the Java Virtual Machine that (which is platform specific) translates this byte-code into native instructions.

Line 13:

Line 13:

===Items and values===

===Items and values===

[[File:Maxgold.png|right|The maximum number of items that may be carried in one stack]]

[[File:Maxgold.png|right|The maximum number of items that may be carried in one stack]]



The most prominent effect of Java's data types is the maximum limit of a
[[Wikipedia:
Integer (computer science)|32-bit signed integer
]]
. RuneScape stores the number of items using an int type variable and thus there can be no more than 2,147,483,647 (2<sup>31</sup>-1) items in a single stack.

+

The most prominent effect of Java's data types is the maximum limit of a
{{WP|
Integer (computer science)|32-bit signed integer
}}
. RuneScape stores the number of items using an int type variable and thus there can be no more than 2,147,483,647 (2<sup>31</sup>-1) items in a single stack.

Consequently, this is the [[Coins#Maximum limits|maximum amount of coins]] (and indeed any other stackable item) that can be stored in a stack. If a player attempts to withdraw or pick up coins while carrying the maximum amount of coins, it is stated that there is not enough inventory space.

Consequently, this is the [[Coins#Maximum limits|maximum amount of coins]] (and indeed any other stackable item) that can be stored in a stack. If a player attempts to withdraw or pick up coins while carrying the maximum amount of coins, it is stated that there is not enough inventory space.

Show more