什么是Java API?
作者:互联网
我知道API是一组规则和协议.有人可以通过示例向我解释什么是Java API及其功能…
解决方法:
您可以在这里找到Java API http://download.oracle.com/javase/6/docs/api/index.html
您可以说它是Java库,并且可以像使用软件的构建块一样使用它,从而可以加快开发速度.
例如:
ArrayList是API中的gazilion类之一.
import java.util.ArrayList; // We say the old mighty compiler that we want to use this class
// we create an ArrayList object called myList that will hold objects of type Beer
ArrayList<Beer> myList = new ArrayList<Beer>();
Beer b = new Beer();
myList.add(b); // the class ArrayList has a function add, that adds an object(a Beer);
myList.size(); // will give you the size of the ArrayList.
myList.remove(b); // will remove our beloved Beer :)
如果您想知道如何使用ArrayList进行其他操作,则应签出API或键入myList时. CTRL SPACE将为您提供所有可用的功能:)
祝好运!
标签:terminology,java 来源: https://codeday.me/bug/20191023/1914386.html