学习Java第十七天

系列文章目录

提示:这里可以添加系列文章的所有文章的目录,目录需要自己手动添加
例如:第一章 Python 机器学习入门之pandas的使用


提示:写完文章后,目录可以自动生成,如何生成可参考右边的帮助文档


前言

提示:这里可以添加本文要记录的大概内容:
例如:随着人工智能的不断发展,机器学习这门技术也越来越重要,很多人都开启了学习机器学习,本文就介绍了机器学习的基础内容。


提示:以下是本篇文章正文内容,下面案例可供参考

String类

方法名 说明
public String() 创建一个空白字符串对象,不含有任何内容
public String(char[] chs) 根据字符数组的内容,来创建字符串对象
public String(byte[] bys) 根据字节数组的内容,来创建字符串对象
String s = “abc”; 直接赋值的方式创建字符串对象内容就是abc
String类的特点

  • 1.字符串的内容永不可变(重点)
  • 2.字符串可以共享
  • 3.字符串效果相当于一个char[],但是实际上底层存储的是byte[]
  • 常见的三种构造方法
  • 1.public String() 创建一个空白字符串,不包含任何内容
  • 2.public String(char[] array) 根据字符数组来创建字符串
  • 3.public String(byte[] array) 根据字符数组来创建字符串

二、常见的API

1.字符的比较equals方法

2.5.1==号的作用
比较基本数据类型:比较的是具体的值
比较引用数据类型:比较的是对象地址值
equals方法的作用
publicbooleanequals(Strings)比较两个字符串内容是否相同、区分大小写

public class Dem02StringEquals {
	public static void main(String[] args) {
		
		String str1="hello";
		String str2="hello";
		char[] chararray= {'H','e','l','l','o'};
		String str3=new String(chararray);
		System.out.println(str1.equals(str2));
		System.out.println(str1.equals(str3));
		System.out.println(str1.equals(str3));
		System.out.println(str3.equals("hello"));
		System.out.println("hello".equals(str1));
		String str4=null;
		//System.out.println(str4.equals("hello"));
		System.out.println("hello".equals(str4));
		String str5="Hello";
		System.out.println("Hello".equals(str5));
		System.out.println("Hello".equalsIgnoreCase(str5));
		
		
		

}
}

字符串的拼接

public class Demo02StringGet {
	public static void main(String[] args) {
		//字符长度
		int length="abcdefgasdawqjkl".length();
		System.out.println("字符串长度"+length);
		//字符串拼接
		String str1="Hello";
		String str2="class5";
		String str3=str1.concat(str2);
		System.out.println(str1);
		System.out.println(str2);
		System.out.println(str3);
		//获得指定索引位置的单个字符
		char ch="Hello".charAt(4);
		System.out.println("零号索引位置字符是"+ch);
		//查找某个字符串第一次出现的位置
		String origanl="Helloworld";
		int index=origanl.indexOf("llo");
		System.out.println(index);
		System.out.println(origanl.indexOf("class"));
	}
	

}

分割字符串

package demo02;
/*

  • 分割字符串
  • public string[] split (string)
  • */

public class Demo02StringSplit {
public static void main(String[] args) {
String str1=“aaa bbb ccc”;
String[] array1=str1.split(" ");
for(int i=0;i<array1.length;i++) {
System.out.println(array1[i]);
}
}

}

截取字符串substring

package demo02;

public class Demo03SubString {
	public static void main(String[] args) {
		String str1="HelloClass5";
		String str2=str1.substring(5);
		System.out.println(str1);
		System.out.println(str2);
		String str3=str1.substring(2,5);
		System.out.println(str3);
	}

}

Arrays

java.util.Arrays 是一个数组相关的工具类,里面提供大量的静态方法

  • 备注
  • 如果是数值,默认按升序从小到大
  • 如果是字符串,sort默认按字母升序
  • */
    在这里插入图片描述
public class dem03Arrays {
	public static void main(String[] args) {
		int [] intArray= {10,20,40};
		System.out.println(intArray);
		String intStr=Arrays.toString(intArray);
		System.out.println(intStr);
		int[] array1= {3,5,6,7,6,6,9};
		System.out.println(Arrays.toString(array1));
		Arrays.sort(array1);
		System.out.println(Arrays.toString(array1));
		String[] array2= {"ddd","ccc","fff"};
		Arrays.sort(array2);
		System.out.println(Arrays.toString(array2));
		
		
	}
	

}

Math

1.1 Math 类概述
Math包含执行基本数字运算的方法
没有构造方法,如何使用类中的成员呢?
看类的成员是否都是静态的,如果是,通过类名就可以直接调用
在这里插入图片描述

public class deom03Math {
	public static void main(String[] args) {
		//去绝对值
		System.out.println(Math.abs(3.14));
		System.out.println(Math.abs(0));
		System.out.println(Math.abs(-3.14));
		System.out.println("=============");
		//向上取整
		System.out.println(Math.ceil(3.91));
		System.out.println(Math.ceil(3.5));
		System.out.println(Math.ceil(3.0001));
		System.out.println("=============");
		//向下取整
		System.out.println(Math.floor(3.91));
		System.out.println(Math.floor(3.5));
		System.out.println(Math.floor(3.0001));
		System.out.println("=============");
		//四舍五入
		System.out.println(Math.round(20.4));
		System.out.println(Math.round(20.5));
		
		
	}
		
	}
	

Static关键字

如果一个成员变量 用static关键字修饰,那么这个变量不属于对象自己,而属于所在类的,此类中所有对象共享

public class deom04StaticFiled {
	public static void main(String[] args) {
		Student one=new Student( "黄蓉",16);
		one.setRoom("3306教室");
		System.out.println(one.getName()+"  "+one.getAge()+"  "+one.getRoom());
		Student two=new Student( "杨过",17);
		System.out.println(two.getName()+"  "+two.getAge()+"  "+two.getRoom());
	}

}

在这里插入图片描述

package demo04;


public class deom04StaticMethod {
	public static void main(String[] args) {
		MyClass obj=new MyClass();
		obj.method();//普通方法,必须通过对象类调用
		obj.methodStatic();//可以通过对象来调用 
		MyClass.methodStatic();//通过类直接调用
	}
	

}
package demo04;

public class MyClass {
	int num;
	static int numstatic;
	public void method(){
		System.out.println("这是成员方法");
		
		
	}
	public static void methodStatic() {
		System.out.println("这是一个静态方法");
	}

}
package demo04;

public class Student {
	private int id;
	private String name;
	private int age;
	private static String room;
	
	public Student(String name, int age) {
		super();
		this.id = id;
		this.name = name;
		this.age = age;
		
	}
	

	public int getId() {
		return id;
	}
	public void setId(int id) {
		this.id = id;
	}
	public String getName() {
		return name;
	}
	public void setName(String name) {
		this.name = name;
	}
	public int getAge() {
		return age;
	}
	public void setAge(int age) {
		this.age = age;
	}
	public static String getRoom() {
		return room;
	}
	public static void setRoom(String room) {
		Student.room = room;
	}
	
}


总结

提示:这里对文章进行总结:
例如:以上就是今天要讲的内容,本文仅仅简单介绍了pandas的使用,而pandas提供了大量能使我们快速便捷地处理数据的函数和方法。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值