What is java api
java api is the standard class library provided by Java itself;
For example, the System.out.println(); printing function you use is the method implemented by Java itself. You just need to call it;
Usually checking the API is to let you see the function implemented by Java itself. , check how it is called, what parameters to pass, etc.;
api has detailed introductions to various classes, as well as various methods, including introductions to the use of constructors and ordinary methods. In fact, it is essentially a dictionary of the Java language .
Recommended tutorial: java tutorial
API
API ( Application Programming Interface (Application Programming Interface) are predefined functions designed to provide applications and developers with the ability to access a set of routines based on a piece of software or hardware without having to access the source code or understand the inner workings. details.
In different occasions, the meaning of this programming interface is different
java api refers to the functions provided by the java standard class library;
the api developed by android refers to the android sdk function library ;
Website API generally refers to the interface provided by a website, such as login verification, information query, notification, payment, etc.;
Windows API refers to the API provided by the Windows operating system.
The above is the detailed content of what is java api. For more information, please follow other related articles on the PHP Chinese website!