CharSequence

public interface CharSequence

字符序列接口, 实现此接口的非抽象类有String, StringBuffer, StringBuilder. 从结果来讲, 该接口的主要作用就是使得三者之间在进行一部分操作(比如查找, 比较)时变得容易.

概念说明

主要是char value和codepoint value的意义及区别, surrogate code point的含义. 简单地说char代表一个2字节的字符, codepoint才代表一个完整的字符(因为少数字符是4字节的, 比如emoji), 具体请参考其他人的文章.

CharSequence定义的方法

char charAt(int)
int length()
CharSequence subSequence(int, int)
String toString() //其实重定义toString没有用, 因为Object类已经实现了这个方法, 就当做这里是一种强调吧

java8新增2个default方法

public default IntStream chars()
public default IntStream codePoints()

分别转换为以char和codepoint为单位的java stream.注意转换后为int类型的unicode编码.

String

public final class String
implements java.io.Serializable, Comparable<String>, CharSequence

这是一个final class.

其中, Serializable 是空接口; Comparable<String>函数式接口, 其方法为int compareTo(T to).

String的构造函数 - 13个

1.以下几个容易理解(6个)

String()
String(byte[])
String(char[])
String(String)
String(StringBuilder)
String(StringBuffer)

2.从数组中截取字符(2个)

String(byte bytes[], int offset, int length)
String(char value[], int offset, int count)

3.从非Unicode编码的字节流中截取字符串, 最后一个参数为编码类型(4个)

String(byte[], String)
String(byte[], Charset)
String(byte[] bytes, int offset, int length, String charsetName)
String(byte[] bytes, int offset, int length, Charset charset)

4.从int类型的codepoint数组转化为String

String(int[] codePoints, int offset, int count)

String的静态方法

1.生成新String, 实际是调用了构造函数String(char[], int, int)

String copyValueOf(char[])
String copyValueOf(char[], int, int)
String valueOf(char[])
String valueOf(char[], int, int)

2.format, 类似于sprintf

String format(String, Object...)
String format(Locale, String, Object...)
  1. join, 可以认为split的逆操作吗
String join(CharSequence, CharSequence...) //或者是数组CharSequence[]
String join(CharSequence, Iterable<? extends CharSequence)

4.valueOf转换, 实际是调用了Integer.toString()等方法

String valueOf(char)
String valueOf(double)
String valueOf(float)
String valueOf(int)
String valueOf(Object obj) //=>obj.toString()
String valueOf(long)

String的对象方法

(除非特别说明, 否则该方法不支持正则)

1.常用, 略

char charAt(int)

boolean isEmpty()

boolean equals(Object) //override

boolean equalsIgnoreCase(String) int indexOf(int ch) //=> indexOf(ch, 0), *用int表示ch可能是因为考虑到了codepoint吧

int indexOf(int ch, int fromIndex)

int indexOf(String str) //=>indexOf(str, 0)

int indexOf(String str, int fromIndex) int lastIndexOf(int)

int lastIndexOf(int, int)

int lastIndexOf(String)

int lastIndexOf(String, int) int length() String concat(String)

String trim()

  1. 不太常用, 但是还算容易理解, 略
boolean startWith(String prefix) //=>startsWith(prefix, 0)
boolean startsWith(Stirng prefix, int offset)
boolean endsWith(String) //note: no overloads
int hashCode() //override Object#hashCode

3.compareTo, 注意其返回值的含义:

(1) this.charAt(k)-anotherString.charAt(k)

(2) this.length()-anotherString.length()

int CompareTo(String)
int CompareToIgnoreCase(String)

4.*codepoint相关, 这里还是不太明白

//这两个见CharSequence接口说明
IntStream chars()
IntStream codePoints() int codePointAt(int index)

int codePointBefore(int)

int codePointCount(int beginIndex, int endIndex)

int offsetByCodePoints(int index, int codePointOffset)

  1. 参数为CharSequence, 表明可以和StringBuffer等类型直接比较

    (还有replace(), 未列出, 见10.)
boolean contains(CharSequence)
boolean contentEquals(CharSequence)

6.get/set/to

(String是常量字符串当然没有set...)

byte[] getBytes()
byte[] getBytes(String) //设置编码
byte[] getBytes(Charset)
void getChars(int srcBegin, int srcEnd, char[] dst[], int dstBegin) char[] toCharArray()

String toLowerCase()

String toLowerCase(Locale) //设置Locale, 使用其他语言的大小写转换规则

String toUpperCase()

String toUpperCase(Locale)

7.intern

native String intern() //*可能是从字符串池中寻找是否有相同的字符串然后修改引用指向该字符串

8.正则表达式相关, 可以从参数名确定

(还有replaceAll()replaceFirst(), 未列出, 见10.)

boolean matches(String)
String[] split(String)
String[] split(String regex, int limit) //最多切分limit次

9.*不太理解...

boolean regionMatches(boolean, int, String, int, int)
boolean regionMatches(int, Stirng, int, int)
  1. replace
String replace(char, char)
String replace(CharSequence, CharSequence)
String replaceAll(String, String) //支持正则
String replaceFirst(String, String) //支持正则

11.substring

条件: 0<=beginIndex<=endIndex<=length, 注意和JavaScript或python的类似函数区分

CharSequence subSequence(int, int) //只是返回值不同
String substring(int beginIndex, int endIndex)
String substring(int beginIndex) //=>substring(beginIndex, this.length() - beginindex)
      </div>
</div>
posted @
2019-06-12 15:33 
星朝 
阅读(...) 
评论(...) 
编辑 
收藏

Java8 API学习2 - java.lang.CharSequence, java.lang.String的更多相关文章

  1. Java数据持久层框架 MyBatis之API学习四(xml配置文件详解)

    摘录网址: http://blog.csdn.net/u010107350/article/details/51292500 对于MyBatis的学习而言,最好去MyBatis的官方文档:http:/ ...

  2. Java中的java.lang.Class API 详解

    且将新火试新茶,诗酒趁年华. 概述 Class是一个位于java.lang包下面的一个类,在Java中每个类实例都有对应的Class对象.类对象是由Java虚拟机(JVM)自动构造的. Class类的 ...

  3. Json for Java API学习

    首先声明:本文来个非常多网友的博客,我通过參考了他们的博客,大致的了解了一些项目中经常使用的Json in java 类和方法,以及关于json的个人理解 个人对json的一些简单理解 在近期的学习中 ...

  4. java.lang.BootstrapMethodError: java.lang.NoClassDefFoundError: scala/runtime/java8/JFunction1$mcII$sp

    报错信息: Exception in thread "main" java.lang.BootstrapMethodError: java.lang.NoClassDefFound ...

  5. Java MyEclipse:The type java.lang.CharSequence cannot be resolved. It is indirectly referen

    从svn上下载项目后配置weblogic后启动报错: myeclipse  The type java.lang.CharSequence cannot be resolved. It is indi ...

  6. Java数据持久层框架 MyBatis之API学习六(Mapper XML 文件详解)

    对于MyBatis的学习而言,最好去MyBatis的官方文档:http://www.mybatis.org/mybatis-3/zh/index.html 对于语言的学习而言,马上上手去编程,多多练习 ...

  7. Java数据持久层框架 MyBatis之API学习一(简介)

    对于MyBatis的学习而言,最好去MyBatis的官方文档:http://www.mybatis.org/mybatis-3/zh/index.html 对于语言的学习而言,马上上手去编程,多多练习 ...

  8. sprinbcloud学习之-Failed to bind properties under 'logging.level' to java.util.Map<java.lang.String>

    日志报错,提示Failed to bind properties under 'logging.level' to java.util.Map<java.lang.String>, 原因为 ...

  9. java.time包常用类API学习记录

    Java8出来已那么多年了,java.time包之前一直没有使用过,最近正好有用到,在此做个记录. 上图列出了java.time包下的类,接下来我们详细看下其中每个类的用法. Clock:获取到当前时 ...

随机推荐

  1. solr dataimport中遇到的问题

    1.windows的tomcat是没有catalina.out的,可以通过修改start.bat和catalina.bat的方式让日志输出到catalina.out 2.按照网上搜到的资料配置好sol ...

  2. Adapter小练习

    Aapter的继承关系图: Android中Adapter的是数据和视图之间的桥梁,数据在adapter中做处理,然后显示到视图上面. 一.ArrayAdapter适配器 java代码: import ...

  3. 纯CSS3实现Metro Icon

    在线演示 本地下载

  4. Leetcode840.Magic Squares In Grid矩阵中的幻方

    3 x 3 的幻方是一个填充有从 1 到 9 的不同数字的 3 x 3 矩阵,其中每行,每列以及两条对角线上的各数之和都相等. 给定一个由整数组成的 N × N 矩阵,其中有多少个 3 × 3 的 & ...

  5. 外贸电子商务网站之Prestashop paypal支付添加

    1.在https://addons.prestashop.com/en/payment-card-wallet/1748-paypal.html 下载paypal支付模块 2.解压,复制到网站根目录- ...

  6. phpexcel导出数据库成excel文件

    <?php error_reporting(E_ALL); date_default_timezone_set('Europe/London'); /** PHPExcel */ require ...

  7. js原生复习2.0

    // 1.闭包的作用// 实现共有变量,函数累加器的实现// 可以做缓存以及储存结构// 可以实现封装,实现属性私有化// 模块开发,防止全局污染// var name = 123;// var in ...

  8. 【ToReadList】六种姿势拿下连续子序列最大和问题,附伪代码(以HDU 1003 1231为例)(转载)

    问题描述:       连续子序列最大和,其实就是求一个序列中连续的子序列中元素和最大的那个. 比如例如给定序列: { -2, 11, -4, 13, -5, -2 } 其最大连续子序列为{ 11, ...

  9. oralce GROUPING SETS

    select id,area,stu_type,sum(score) score from students group by grouping sets((id,area,stu_type),(id ...

  10. @codeforces - 1205D@ Almost All

    目录 @description@ @solution@ @accepted code@ @details@ @description@ 给定一个 n 个点的无向树. 请在每条边上写上权值,使得对于每一 ...