随笔分类 - Java学习记录
摘要:string和Date 的相互转换 // string 与 Date的相互转换用 // String to Date DateFormat format = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss"); String dateTest = "2023-4-
阅读全文
摘要:| 基本数据类型 | 包装类 | | | | | byte | Byte | | boolean | Boolean | | short | Short | | char | Character | | int | Integer | | long | Long | | float | Float
阅读全文
摘要:常量的定义 c# 使用const const int a = 1; java 使用final final int a =1; 控制台的输入与输出 c# string consoleInputValue = Console.ReadLine();//输入,读取一行,返回的是stirng,需要读取值类型
阅读全文