吾爱破解 - 52pojie.cn

 找回密码
 注册[Register]

QQ登录

只需一步,快速开始

查看: 922|回复: 2
收起左侧

[学习记录] Java学习第六天--数组/正则表达式(部分)

[复制链接]
xiaotian1339 发表于 2022-4-5 23:28
本帖最后由 xiaotian1339 于 2022-4-5 23:30 编辑

自学Java-0基础到框架(JDK8)-day06

数组

声明

两种声明变量方式

1. 类型[] 变量名;
2. 类型 变量名[];
例子:
    1. int[] numArray;
        2. int numTest[];

创建

示例:

1. int[] a = new int[10];
// 10代表数组的长度
2. int[] b = {1,2,3,4,5,6,7}

因为数组元素大小和类型都是确定的,可以使用for循环或者是之前提到的加强for循环对数组进行处理!

这里对加强for循环进行一个复习。

示例:

public class ArrayTest {
    public static void main(String[] args) {
        int[] a = {1, 2, 3, 4, 5, 6, 7, 8, 9};
        for (int num : a) {
            System.out.println(num);
        }

    }
}

输出:

1
2
3
4
5
6
7
8
9

作为参数

同样数组可以作为传入方法中的参数

Java 基本数据类型传递参数时是值传递 ;引用类型传递参数时是引用传递 。数组是引用传递

示例:

public class ArrayTest {
    public static void main(String[] args) {
        int[] a = {1, 2, 3, 4, 5, 6, 7, 8, 9};
        printArray(a);

    }
    public static void printArray(int[] array) {
        for (int i = 0; i < array.length; i++) {
            System.out.println(array[i]);
        }
    }
}

Out:

1
2
3
4
5
6
7
8
9

作为返回值

示例:

public class ArrayTest {
    public static void main(String[] args) {
        int[] c = returnArray(2, 11);
        for(int i:c){
            System.out.println(i);
        }
    }
    public static int[] returnArray(int a, int b) {
        int arrayLength = b - a + 1;
        int[] array = new int[arrayLength];
        for (int i = a; i <= b; i++) {
            array[i - a] = i;
        }
        return array;
    }

Out:

2
3
4
5
6
7
8
9
10
11

多维数组

        // 创建一个二维数组,并随机赋值
        int[][] array = new int[5][5];
        for (int i = 0; i < array.length; i++) {
            for (int j = 0; j < array[i].length; j++) {
                array[i][j] = (int) (Math.random() * 100);
            }
        }
        // 打印二维数组
        for (int i = 0; i < array.length; i++) {
            for (int j = 0; j < array[i].length; j++) {
                System.out.print(array[i][j] + "\t");
            }
            System.out.println();
        }

Out:

66        96        37        67        32        
40        18        36        44        31        
34        20        27        79        20        
78        43        1        69        66        
65        46        99        77        52        

Arrays 类

java.util.Arrays 类能方便地操作数组,它提供的所有方法都是静态的。

具有以下功能:

  • 给数组赋值:通过 fill 方法。
  • 对数组排序:通过 sort 方法,按升序。
  • 比较数组:通过 equals 方法比较数组中元素值是否相等。
  • 查找数组元素:通过 binarySearch 方法能对排序好的数组进行二分查找法操作。

fangfaarray


正则表达式

java.util.regex 包主要包括以下三个类:

  • Pattern 类:

    pattern 对象是一个正则表达式的编译表示。Pattern 类没有公共构造方法。要创建一个 Pattern 对象,你必须首先调用其公共静态编译方法,它返回一个 Pattern 对象。该方法接受一个正则表达式作为它的第一个参数。

  • Matcher 类:

    Matcher 对象是对输入字符串进行解释和匹配操作的引擎。与Pattern 类一样,Matcher 也没有公共构造方法。你需要调用 Pattern 对象的 matcher 方法来获得一个 Matcher 对象。

  • PatternSyntaxException:

    PatternSyntaxException 是一个非强制异常类,它表示一个正则表达式模式中的语法错误。


示例:

public class RegexTest {
    public static void main(String[] args) {
        String str = "This is a test string";
        String regex = ".*test.*";
        System.out.println(str.matches(regex));
    }
}
//Out: true
import java.util.regex.*;
public class RegexTest {
    public static void main(String[] args) {
        String str = "This is a test string";
        String regex = ".*test.*";
        boolean isMatch = Pattern.matches(regex, str);
        System.out.println(isMatch);
    }
}
//Out:true

突然有点事,明天继续学~~~

免费评分

参与人数 1吾爱币 +1 热心值 +1 收起 理由
Linshengqiang + 1 + 1 用心讨论,共获提升!

查看全部评分

发帖前要善用论坛搜索功能,那里可能会有你要找的答案或者已经有人发布过相同内容了,请勿重复发帖。

sanyuebeichen 发表于 2022-4-6 00:04
我还没学正则表达式了
虚幻魔王 发表于 2022-4-6 08:29
您需要登录后才可以回帖 登录 | 注册[Register]

本版积分规则

返回列表

RSS订阅|小黑屋|处罚记录|联系我们|吾爱破解 - LCG - LSG ( 京ICP备16042023号 | 京公网安备 11010502030087号 )

GMT+8, 2024-11-25 13:09

Powered by Discuz!

Copyright © 2001-2020, Tencent Cloud.

快速回复 返回顶部 返回列表