摘要:
学习了Java没多久,有一些基础概念有点犯迷惑。今天偶遇好文,摘录在此:JDK (Java Development Kit)Java Developer Kit contains tools needed to develop the Java programs, and JRE to run the programs. The tools include compiler (javac.exe), Java application launcher (java.exe), Appletviewer, etc…Compiler converts java code into byte code 阅读全文
摘要:
你了解Java中String的substring函数吗?Java中的substring函数是我们经常使用的一个函数,用来截取当前字符串的子串,定义如下:public final class String{ public String substring(int beginIndex); public String substring(int beginIndex, int endIndex);}使用及声明都非常简单,但是你了解其中的细节吗?我们再看一下substring的实现: 1 public String substring(int beginIndex, int endInd... 阅读全文