Java教程

Java中常用类的简单使用

本文主要是介绍Java中常用类的简单使用,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

String类、static关键字、Arrays类、Math类

  • String类
    • String类概述
      • 概述
      • 特点
    • 使用步骤
    • 常用方法
      • 判断功能的方法
      • 获取功能的方法
      • 转换功能的方法
      • 分割功能的方法
  • static关键字
    • 概述
    • 定义和使用格式
      • 类变量
      • 静态方法
      • 调用格式
    • 静态原理图解
    • 静态代码块
  • Arrays类
    • 概述
    • 操作数组的方法
  • Math类
    • 概述
    • 基本运算的方法

String类

String类概述

概述

  1. java.lang.String 类代表字符串。Java程序中所有的字符串文字(例如 “abc” )都可以被看作是实现此类的实例。
  2. 类 String 中包括用于检查各个字符串的方法,比如用于比较字符串,搜索字符串,提取子字符串以及创建具有翻译为大写或小写的所有字符的字符串的副本。

特点

  1. 字符串不变:字符串的值在创建后不能被更改。
String s1 = "abc";
s1 += "d";
System.out.println(s1); // "abcd"
// 内存中有"abc","abcd"两个对象,s1从指向"abc",改变指向,指向了"abcd"。
  1. 因为String对象是不可变的,所以它们可以被共享。
String s1 = "abc";
String s2 = "abc";
// 内存中只有一个"abc"对象被创建,同时被s1和s2共享。

如何证明s1和s2的内存地址是一样的?
用Hashcode来测试似乎是不可行的,以下是hashcode的简单解释。
1) 在散列集合中只实现插入对象通过hashcode值不能确定对象对象是否存在,hashcode值相同,还需判断对象equals确定对象是否存在。
2.)在散列集合存储无重复对象需重写hashcode和equals方法,hashcode方法是为了检索对象范围。equals才是判断对象是否相等的方法。所以相同对象hashcode一定相同,相同hashcode的对象不一定相等。
3) 存储在散列集合中的对象被改变后,在集合中被忽略无法remove,内存无法释放回收,大量积累会造成内存溢出
原文链接: https://blog.csdn.net/lin1094201572/article/details/81282596.

  1. “abc” 等效于 char[] data={ ‘a’ , ‘b’ , ‘c’ } 。
//例如:
String str = "abc";
//相当于:
char data[] = {'a', 'b', 'c'};
String str = new String(data);
// String底层是靠字符数组实现的。
public static void main(String[] args) {
        String str = "abc";
        char data[] = {'a', 'b', 'c'};
        String str1 = new String(data);
        System.out.println(str.equals(str1));//true
    }

使用步骤

  1. 查看类:
    java.lang.String :此类不需要导入。
  2. 查看构造方法:
    public String() :初始化新创建的 String对象,以使其表示空字符序列。
    public String(char[] value) :通过当前参数中的字符数组来构造新的String。
    public String(byte[] bytes) :通过使用平台的默认字符集解码当前参数中的字节数组来构造新的String。
    构造举例,代码如下:
public static void main(String[] args) {
        // 无参构造
        String str = new String();
        // 通过字符数组构造
        char chars[] = {'a', 'b', 'c'};
        String str2 = new String(chars);
        System.out.println(str2);//abc
        // 通过字节数组构造 这里的数字表示的是ASCII码表中的值
        byte bytes[] = { 97, 98, 99 };
        String str3 = new String(bytes);
        System.out.println(str3);//abc
    }

常用方法

判断功能的方法

  1. public boolean equals (Object anObject) :将此字符串与指定对象进行比较。
  2. public boolean equalsIgnoreCase (String anotherString) :将此字符串与指定对象进行比较,忽略大小写。
  3. Object 是” 对象”的意思,也是一种引用类型。作为参数类型,表示任意对象都可以传递到方法中。
  4. 方法演示,代码如下:
public static void main(String[] args) {
	// 创建字符串对象
	String s1 = "hello";
	String s2 = "hello";
	String s3 = "HELLO";
	// boolean equals(Object obj):比较字符串的内容是否相同
	System.out.println(s1.equals(s2)); // true
	System.out.println(s1.equals(s3)); // false
	System.out.println("‐‐‐‐‐‐‐‐‐‐‐");
	//boolean equalsIgnoreCase(String str):比较字符串的内容是否相同,忽略大小写
	System.out.println(s1.equalsIgnoreCase(s2)); // true
	System.out.println(s1.equalsIgnoreCase(s3)); // true
	System.out.println("‐‐‐‐‐‐‐‐‐‐‐");
}

获取功能的方法

  1. public int length () :返回此字符串的长度。
  2. public String concat (String str) :将指定的字符串连接到该字符串的末尾。
  3. public char charAt (int index) :返回指定索引处的 char值。
  4. public int indexOf (String str) :返回指定子字符串第一次出现在该字符串内的索引。
  5. public String substring (int beginIndex) :返回一个子字符串,从beginIndex开始截取字符串到字符串结尾。
  6. public String substring (int beginIndex, int endIndex) :返回一个子字符串,从beginIndex到endIndex截取字符串。含beginIndex,不含endIndex。
  7. 方法演示,代码如下:
public static void main(String[] args) {
	//创建字符串对象
	String s = "helloworld";
	// int length():获取字符串的长度,其实也就是字符个数
	System.out.println(s.length());//10
	System.out.println("‐‐‐‐‐‐‐‐");
	// String concat (String str):将将指定的字符串连接到该字符串的末尾.
	String s2 = s.concat("**hello itheima");
	System.out.println(s2);// helloworld**hello itheima
	// char charAt(int index):获取指定索引处的字符
	System.out.println(s.charAt(0));//h
	System.out.println(s.charAt(1));//e
	System.out.println("‐‐‐‐‐‐‐‐");
	// int indexOf(String str):获取str在字符串对象中第一次出现的索引,没有返回‐1
	System.out.println(s.indexOf("l"));//2
	System.out.println(s.indexOf("owo"));//4
	System.out.println(s.indexOf("ak"));//-1
	System.out.println("‐‐‐‐‐‐‐‐");
	// String substring(int start):从start开始截取字符串到字符串结尾
	System.out.println(s.substring(0));//helloworld
	System.out.println(s.substring(5));//world
	System.out.println("‐‐‐‐‐‐‐‐");
	// String substring(int start,int end):从start到end截取字符串。含start,不含end。
	System.out.println(s.substring(0, s.length()));//helloworld
	System.out.println(s.substring(3,8));//loworl
}

转换功能的方法

  1. public char[] toCharArray () :将此字符串转换为新的字符数组。
  2. public byte[] getBytes () :使用平台的默认字符集将该 String编码转换为新的字节数组。
  3. public String replace (CharSequence target, CharSequence replacement) :将与target匹配的字符串使用replacement字符串替换。
  4. 方法演示,代码如下:
public static void main(String[] args) {
	//创建字符串对象
	String s = "abcde";
	// char[] toCharArray():把字符串转换为字符数组
	char[] chs = s.toCharArray();
	for(int x = 0; x < chs.length; x++) {
		System.out.print(chs[x] + " ");//a b c d e
	}
	// byte[] getBytes ():把字符串转换为字节数组
	byte[] bytes = s.getBytes();
	for(int x = 0; x < bytes.length; x++) {
		System.out.print(bytes[x] + " ");//97 98 99 100 101
	}
	// 替换字母it为大写IT
	String str = "itcast itheima";
	String replace = str.replace("it", "IT");
	System.out.println(replace); // ITcast ITheima
}

分割功能的方法

  1. public String[] split(String regex) :将此字符串按照给定的regex(规则)拆分为字符串数组。
  2. 方法演示,代码如下:
public static void main(String[] args) {
	//创建字符串对象
	String s = "aa bb cc";
	String[] strArray = s.split(" ");//按空格进行切片
	System.out.println(Arrays.toString(strArray));//[aa, bb, cc]
	for(int x = 0; x < strArray.length; x++) {
	    System.out.print(strArray[x] + " "); // aa bb cc
	}
}

static关键字

概述

  1. 关于 static 关键字的使用,它可以用来修饰的成员变量和成员方法,被修饰的成员是属于类的,而不是单单是属于某个对象的。也就是说,既然属于类,就可以不靠创建对象来调用了。

定义和使用格式

类变量

  1. 当 static 修饰成员变量时,该变量称为类变量。该类的每个对象都共享同一个类变量的值。任何对象都可以更改该类变量的值,但也可以在不创建该类的对象的情况下对类变量进行操作。
  2. 使用 static关键字修饰的成员变量。
  3. 定义格式:
static 数据类型 变量名;
  1. 举例:
static int numberID;

静态方法

  1. 当 static 修饰成员方法时,该方法称为类方法 。静态方法在声明中有 static ,建议使用类名来调用,而不需要创建类的对象。调用方式非常简单。
  2. 类方法:使用 static关键字修饰的成员方法,习惯称为静态方法。
  3. 定义格式:
修饰符 static 返回值类型 方法名 (参数列表){
// 执行语句
}
  1. 静态方法调用的注意事项:
    1. 静态方法可以直接访问类变量和静态方法。
    2. 静态方法不能直接访问普通成员变量或成员方法。反之,成员方法可以直接访问类变量或静态方法。
    3. 静态方法中,不能使用this关键字。
    4. 静态方法只能访问静态成员。

调用格式

public class String_8_static {
    //静态的成员变量
    private static int number = 5;
    //成员变量
    private int num = 10;

    public static void main(String[] args) {
        //使用静态的成员变量
        System.out.println(number);//5
        //可以直接调用本类中的静态方法
        System.out.println(add(1,2));//8
        //调用非静态方法
        System.out.println(new String_8_static().add1(1,2));//3
        //调用成员变量
        System.out.println(new String_8_static().num);//10
    }

    //静态方法
    public static int add(int number1,int number2){
        // 不可以在静态方法中使用非静态的成员变量
        //java: 无法从静态上下文中引用非静态 变量 num
       /* System.out.println(num);*/
        // 可以在静态方法中调用静态方法
        int sub = sub(1, 2);
        System.out.println(sub);
        return sub;
    }
    //静态方法
    public static int sub(int number1,int number2){
        // 可以在静态方法中使用静态的成员变量
        return number1 + number2 + number;
    }

    //成员方法
    public int add1(int a,int b){
        return a + b;
    }
}

静态原理图解

  1. static 修饰的内容:
    1. 是随着类的加载而加载的,且只加载一次。
    2. 存储于一块固定的内存区域(静态区),所以,可以直接被类名调用。
    3. 它优先于对象存在,所以,可以被所有对象共享。

在这里插入图片描述

静态代码块

  1. 静态代码块:定义在成员位置,使用static修饰的代码块{ }。
    1. 位置:类中方法外。
    2. 执行:随着类的加载而执行且执行一次,优先于main方法和构造方法的执行。
  2. 格式:
public class ClassName{
	//静态代码块可以有多个按照从上至下的顺序依次执行
	static {
		// 执行语句
	}
	
	static {
		// 执行语句
	}
}

Arrays类

概述

  1. java.util.Arrays 此类包含用来操作数组的各种方法,比如排序和搜索等。其所有方法均为静态方法,调用起来非常简单。

操作数组的方法

  1. public static String toString(int[] a) :返回指定数组内容的字符串表示形式。
public static void main(String[] args) {
	// 定义int 数组
	int[] arr = {2,34,35,4,657,8,69,9};
	// 打印数组,输出地址值
	System.out.println(arr); // [I@2ac1fdc4
	// 数组内容转为字符串
	String s = Arrays.toString(arr);
	// 打印字符串,输出内容
	System.out.println(s); // [2, 34, 35, 4, 657, 8, 69, 9]
}
  1. public static void sort(int[] a) :对指定的 int 型数组按数字升序进行排序。
public static void main(String[] args) {
	// 定义int 数组
	int[] arr = {24, 7, 5, 48, 4, 46, 35, 11, 6, 2};
	System.out.println("排序前:"+ Arrays.toString(arr)); // 排序前:[24, 7, 5, 48, 4, 46, 35, 11, 6,2]
	// 升序排序
	Arrays.sort(arr);
	System.out.println("排序后:"+ Arrays.toString(arr));// 排序后:[2, 4, 5, 6, 7, 11, 24, 35, 46,48]
}

Math类

概述

  1. java.lang.Math 类包含用于执行基本数学运算的方法,如初等指数、对数、平方根和三角函数。类似这样的工具类,其所有方法均为静态方法,并且不会创建对象,调用起来非常简单。

基本运算的方法

  1. public static double abs(double a) :返回 double 值的绝对值。
double d1 = Math.abs(‐5); //d1的值为5
double d2 = Math.abs(5); //d2的值为5
  1. public static double ceil(double a) :返回大于等于参数的最小的整数。
double d1 = Math.ceil(3.3); //d1的值为 4.0
double d2 = Math.ceil(‐3.3); //d2的值为 ‐3.0
double d3 = Math.ceil(5.1); //d3的值为 6.0
  1. public static double floor(double a) :返回小于等于参数最大的整数。
double d1 = Math.floor(3.3); //d1的值为3.0
double d2 = Math.floor(‐3.3); //d2的值为‐4.0
double d3 = Math.floor(5.1); //d3的值为 5.0
  1. public static long round(double a) :返回最接近参数的 long。(相当于四舍五入方法)
long d1 = Math.round(5.5); //d1的值为6.0
long d2 = Math.round(5.4); //d2的值为5.0
这篇关于Java中常用类的简单使用的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!