日期类时间类,日期时间类,单例模式,装箱与拆箱,数字类随机数,BigDecimal总结
1.日期类,时间类,日期时间类
初步日期使用方法及格式转换方法(旧方法):
格式://Mon Jul 30 11:26:05 CST 2018 年月日时分秒 CST代表北京时间
获取当前毫秒
Date date = new Date();
转换时间格式:
SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
String s = sdf.format(date);
日历类的使用
Calendar c1 = Calendar.getInstance();
int year = c1.get(c1.YEAR);
int month = c1.get(c1.MONTH);
打印日历示例(新方法:LocalDate时间类)
public static void getMonth(int year,int month){ LocalDate date = LocalDate.of(year, month, 1);
/**
* 判断月
*/
int days = 0;
if(month == 1 ||month == 3 ||month == 5||month == 7||month == 8 ||month == 10 || month == 12){
days = 31;//31天
}else if(month == 2){
//2月份
if(date.isLeapYear()){
days = 29;//29天
}else{
days = 28;//28天
}
}else{
days = 30;//30天
}
//判断当前月第一天是周几
int week = date.getDayOfWeek().getValue();
/**
* 一 二 三 四 五 六 日
* 1 2 3 4
* 5 6
*/
//第一行,打印"日 一 二 三 四 五 六"
//第二行,打印,根据星期打印空格,
//之后打印1--(30 31 28 29)
System.out.println("日\t一\t二\t三\t四\t五\t六");
//打印空格
int count = 0;
for (int i = 1; i < week; i++) {
count++;
System.out.print("\t");
}
//1 ---- 31 29 30
for (int i = 1; i <=days; i++) {
count++;//接着之前的空格计算
System.out.print(i+"\t");//不换行打印
if(count%7==0){//每行7个字符。换行
System.out.println();
}
}
}
public static void main(String[] args) {
getMonth(2018, 7);
for(int i=1;i<=12;i++){
System.out.println("\n*********************************************");
getMonth(2019, i);
System.out.println("\n*********************************************");
}
} }
LocalDate 创建日期类,日期的格式化,快速创建日期的方法,获取年月日,判断闰年的方法
LocalTime 创建时间的类,时分秒的格式化
LocalDateTime日期时间类
DateTimeFormatter类-----"yyyy-MM-dd HH:mm:ss"
可以说,LocalDateTime里可以包含LocalDate类的信息和LocalTime类的信息
LocalDate使用示例:
//判断当前年是否是闰年
LocalDate localDate1 = LocalDate.now();
boolean leapYear = localDate1.isLeapYear();
//2001 1 1 快速的构建一个日期类LocalDate of()方法去构建
LocalDate ld2 = LocalDate.of(2001, 1, 1);
LocalTime使用举例:用来返回当前时间
LocalDateTime dateTime = LocalDateTime.now(); System.out.println(dateTime);
//格式化日期格式的类DateTimeFormatter
DateTimeFormatter dtf = DateTimeFormatter.ofPattern("yyy-MM-dd HH:mm:ss");
//把LocalDateTime类型转化为String字符串类型
String strDateTime = dtf.format(dateTime);
//获取当前月份,获取当前年份,时分秒
LocalDateTime date = LocalDateTime.now();
date.getYear();
date.getMonth();
date.getHour();
date.getMinute();
date.getSecond();
2.String某些函数用法
//不区分大小写判断是否相等
str1.equalsIgnoreCase(str2)
//字符串是否包含另一个串
str1.contains("a")
//找到字符串中下标为1的字符
str1.charAt(1)
//截取字符串,包含前不包含后
String newStr = str.substring(1,5);
//按逗号分割成String数组
String[] ss =strs.split(",");
//trim()方法,只能去前后空格,中间空格去不掉
String s = str3.trim();
//检查字符串的尾串是不是逗号
countstr.endsWith(",")
//替换所有的逗号为空字符
countstr.replace(",","");
//最后一个点的位置
email.lastIndexOf(".")
//第一个@的位置
email.indexOf("@")
String与StringBuffer的区别
1、String的值不可以改变,只能改变内存地址的指向。所以String类在修改字符串方面的效率较低。StringBuffer的值可以改变,带有缓冲区,方便进行内容修改。
2、String类中连接用’+’,而StringBuffer用append方法做数据连接
StringBuffer类中定义的方法全部使用同步定义,属于线程安全操作
StringBuilder类没有同步定义,都是异步方法,属于非线程安全操作
String与StringBuffer相互转换
StringBuffer strBuff = new StringBuffer("新字符串:");
for (int i = 0; i < ss.length; i++) {
strBuff.append(ss[i]+",");//将后面加上逗号,放入缓冲区
}
System.out.println(strBuff.toString());
strBuff.deleteCharAt(strBuff.length()-1);
//去掉最后一个逗号,不用返回,直接拿strBuff操作
System.out.println(strBuff.toString());
//新字符串:今天,天气真的不错,我们一起去爬山吧,好的
char a[] = new char[]{'[','2','0','1','8',']'};
strBuff.insert(0,a);
//strBuff.insert(0, "[2018] ");
System.out.println(strBuff.toString());
正则表达式用法
String reg = "^[0-9]{0,9}";//零到九
//*所有
//.占位符
boolean flag = "12".matches(reg);
System.out.println(flag);
数字包装类
包装类解决了基本数据类型,不能使用对象的问题
1、 装箱--->把基本数据类型转化成相应的包装类
Integer i = new Integer(a);
Integer i1 = new Integer("100");
Double d1 = new Double(b);
char c2 = new Character('a');
自动装箱:
Integer iii = 1000;
Character c1 = 'a';
double b = 10.10;
2、 拆箱--->把包装类转化为基本数据类型(自动拆箱和手动拆箱)
手动拆箱:
int i_3 = i1.intValue();
double d_2 = d1.doubleValue();
boolean bool1_2 = bool1.booleanValue();
自动拆箱
int i__3 = i;
int i1__3 = i1;
3、 String和包装类及基本数据类型的转化
String str5 = "2312";
String str6 = "2345.23.23";
String str7 = "23.12d";
String str2 = "1000";
int ii2 = Integer.valueOf(str2);
//如果str5加上L字符,转化将有异常
Long str5_1 = Long.valueOf(str5);
//出现多个点的话,转化有错误
double str6_1 = Double.valueOf(str6);
日期类时间类,日期时间类,单例模式,装箱与拆箱,数字类随机数,BigDecimal总结的更多相关文章
- C#基础回顾(二)—页面值传递、重载与重写、类与结构体、装箱与拆箱
一.前言 -孤独的路上有梦想作伴,乘风破浪- 二.页面值传递 (1)C#各页面之间可以进行数据的交换和传递,页面之间可根据获取的数据,进行各自的操作(跳转.计算等操作).为了实现多种方式的数据传递,C ...
- Integer类的装箱和拆箱到底是怎样实现的?
先解释一下装箱和拆箱: 装箱就是 自动将基本数据类型转换为包装器类型:拆箱就是 自动将包装器类型转换为基本数据类型. 下表是基本数据类型对应的包装器类型: int(4字节) Integer byt ...
- 1.1 JAVA装箱和拆箱以及Java Number & Math&Character 类
JAVA装箱和拆箱 从Java SE5开始就提供了自动装箱的特性,如果要生成一个数值为10的Integer对象,只需要这样就可以了.原文链接: http://www.cnblogs.com/dolph ...
- java - day010 - 基本类型包装,自动装箱和拆箱,日期,集合
基本类型的包装类 byte Byte short Short int Integer long Long float Float double Double char Character boolea ...
- Java基础(35):装箱与拆箱---Java 中基本类型和包装类之间的转换(Wrapper类)
基本类型和包装类之间经常需要互相转换,以 Integer 为例(其他几个包装类的操作雷同哦): 在 JDK1.5 引入自动装箱和拆箱的机制后,包装类和基本类型之间的转换就更加轻松便利了. 那什么是装箱 ...
- Integer类的装箱和拆箱实现
反编译:是指通过对他人软件的目标程序(比如可执行程序)进行“逆向分析.研究”工作,以推导出他人的软件产品所使用的思路.原理.结构.算法.处理过程.运行方法等设计要素,某些特定情况下可能推导出源代码.反 ...
- 设计模式之PHP项目应用——单例模式设计Memcache和Redis操作类
1 单例模式简单介绍 单例模式是一种经常使用的软件设计模式. 在它的核心结构中仅仅包括一个被称为单例类的特殊类. 通过单例模式能够保证系统中一个类仅仅有一个实例并且该实例易于外界訪问.从而方便对实例个 ...
- Java ——Number & Math 类 装箱 拆箱 代码块
本节重点思维导图 当需要使用数字的时候,我们通常使用内置数据类型,如:byte.int.long.double 等 int a = 5000; float b = 13.65f; byte c = 0 ...
- Android随笔之——Android时间、日期相关类和方法
今天要讲的是Android里关于时间.日期相关类和方法.在Android中,跟时间.日期有关的类主要有Time.Calendar.Date三个类.而与日期格式化输出有关的DateFormat和Simp ...
随机推荐
- Centos 7 docker 启动容器 iptables 报 No chain/target/match by that name
我也遇到这个问题,原因时启动docker服务时没有启动iptables服务导致的(有些docker需要再iptables开放有些端口)解决方法1.启动iptables服务 CentOS 7 以下版本 ...
- IDEA查看项目对应的git地址
参考 https://blog.csdn.net/yyyadan/article/details/85091972 项目文件夹/.git/config
- ES6学习笔记(数组)
1.扩展运算符:, 2, 3]) // 1 2 3 console.log(1, ...[2, 3, 4], 5) // 1 2 3 4 5 用于函数调用 function add(x, y) { r ...
- Failed to install gems via Bundler
问题:在执行git push heroku master时,程序报错. 解决办法: 1.bundle update 2.git add . 3.git commit -m "message& ...
- spring注解式参数校验
很痛苦遇到大量的参数进行校验,在业务中还要抛出异常或者返回异常时的校验信息,在代码中相当冗长,今天我们就来学习spring注解式参数校验. 其实就是:hibernate的validator. 开始啦. ...
- 使用jconsole分析内存情况-JVM
JVM调优分析演练: Jconsole中对内存为如下结构: 原始代码: public static void main(String[] args) { BigInteger [] pArr=new ...
- Python MD5算法使用
## md5算法简介 1. **简介** MD5消息摘要算法(MD5 Message-Digest Algorithm),一种被广泛使用的密码散列函数,可以产生出一个128位(16字节)的散列值 ...
- AX2009 批处理作业中使用多线程---批量捆绑
批量捆绑 由于Ax服务器中批处理线程是可以多个的,而实际批处理作业中线程往往只使用了一个 Class: /* 批量捆绑 */ /*class Code*/ public class DemoBat ...
- 设计模式学习心得<桥接模式 Bridge>
说真的在此之前,几乎没有对于桥接模式的应用场景概念. 桥接(Bridge)是用于把抽象化与实现化解耦,使得二者可以独立变化.这种类型的设计模式属于结构型模式,它通过提供抽象化和实现化之间的桥接结构,来 ...
- IDEA高效运用技巧
windows: //快捷鍵 1.项目之间的切换快捷键:Ctrl+Alt+[]. 2.文件之间切换快捷键:Ctrl+Alt+左右箭头. 3.返回到上一次修改的地方:Ctrl+Q. 4.查找打开过的文件 ...