随笔分类 - Java
摘要:学习了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...
阅读全文
摘要:Java中的InputStream和OutputStream做Java技术好几个月了,碰到了很多琐碎细小的技术点,一直没有记录。“勿以善小而不为”,正好今天有点空,先从两个Stream说起。InputStream vs OutputStreamInputStream用来进行数据读取,而OutputStream用来进行数据写入。接口描述:public abstract class InputStream implements Closeable { public abstract int read() throws IOException; public int read(byte ...
阅读全文