charAt(1) ;返回下表为1 的
length 返回长度
indexOf("XXX")返回XX在的位置(开始位置)
startWith() y以什么开始
endWith()以什么结束
String.valueO
0- 多继承相当于
1 ; 定义接口
Interface 接口名 [extends 夫接口1 2 3 (继承,可选)]
{
typed 常量成员名 = vule; (public)
返回类型 反法名 (参数列表);
}
eg :
eg :
public interface PCL{
void start();
void stop();
String Brand = "KINGSTONE"
}
2 :接口的使用 8:40 只有方法不实现,可以有接口变量
在实现接口的类中要实现接口定义的所有方法
eg :
public class GraphicCard (类名) implements PCL(接口名){
private String model :
public GraphicCord(String mode)
{
}
public void stop(){
Stystem.out.println();
}
public void start()
{
System.out.println(" "+PCL.Brand)
}
}
6: Arrays.sort(数组名)“按照ASSCALL"排序; 任意数组可以实现排序,升序
String[] name = new
String[] {"XX", "XX"};
1:public static void sort (Object[] a)
前提: 对象所属的类要实现Comparable接口
public interface Comparable{
public int comparaTo(Object o)'
}
1:声明 Student要实现接口Comparable
public class Students(类名) implements Comparable
2 实现
public int comparaTo(Object otherStudents(类名)) {
满足条件 return -1;
else return 1;
else return 0;
}