7月20日学习日志
Posted 20193925zxt
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了7月20日学习日志相关的知识,希望对你有一定的参考价值。
1.今天学习了java的工具类,下面列举用工具类进行二分查找:
import java.util.Arrays; public class ArraysBinaryDemo{ public static void main(String[] args){ int[] ary={2,3,4,5,9,7,8}; Arrays.sort(ary); int index=Arrays.binarySearch(ary,3); System.out.println("下标在:"+index+"位置"); } }
结果为:
下标在:1位置
2.对工具类比较陌生,还不熟练。
3.明天计划学习Java中的类与封装。
以上是关于7月20日学习日志的主要内容,如果未能解决你的问题,请参考以下文章