How do I use the API correctly

Posted 小步快跑!!!!!

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了How do I use the API correctly相关的知识,希望对你有一定的参考价值。

1:打开帮助文档
2:点击显示,找到索引,看到输入框
3:你要学习什么内容,你就在框框里面输入什么内容
举例:Random
4:看包
java.lang包下的类在使用的时候是不需要导包的
5:看类的描述
Random类是用于生成随机数的类
6:看构造方法
Random():无参构造方法
Random r = new Random();
7:看成员方法
public int nextInt(int n):产生的是一个[0,n)范围内的随机数
调用方法:
看返回值类型:人家返回什么类型,你就用什么类型接收
看方法名:名字不要写错了
看形式参数:人家要几个参数,你就给几个,人家要什么数据类型的,你就给什么数据类型的

int number = r.nextInt(100);



















以上是关于How do I use the API correctly的主要内容,如果未能解决你的问题,请参考以下文章

[转]How do I use variables in Oracle SQL Developer?

How do I list the files in a directory?

How do I force android WiFi Direct group owner to use 2.4 GHz instead of 5 GHz

ruby 来自http://stackoverflow.com/questions/3539148/how-do-i-access-the-name-of-the-rails-3-applicatio

html 如何清除JavaScript中的div,来自http://stackoverflow.com/questions/3450593/how-do-i-clear-the-content-of-

csharp 来自https://stackoverflow.com/questions/874380/wpf-how-do-i-loop-through-the-all-controls-in-a-