mawia
mawia

Reputation: 9349

Java Libraries specification

From the preface to the second edition of java language specification:

"The specifications of the libraries are now far too large to fit into this volume, and they continue to evolve. Consequently, API specifications have been removed from this book. The library specifications can be found on the Web; "

I Was looking for specification of standard library provided as part of Java Programming Language. Any pointer to it? Didn't find it on Oracle.

Upvotes: 4

Views: 943

Answers (3)

S. Mayol
S. Mayol

Reputation: 2625

The most current till today in 2018 for Java 8 docs or API from Oracle site is: Java™ Platform, Standard Edition 8 API Specification. And for C# and .Net guides from Microsoft site which is equivalent to the Java API, the most current version in 2018 is: C# 6.0 draft Language Specification, also C# Guide is useful for C#.

Upvotes: 0

Joni
Joni

Reputation: 111369

You can read the API specification for Java 7 here: http://docs.oracle.com/javase/7/docs/api/

For earlier versions:

And for up-coming Java 8, "subject to change": http://download.java.net/jdk8/docs/api/

Upvotes: 1

Related Questions