Since the object content of the String class cannot be changed, a new String object will be constructed every time it is spliced, which is time-consuming and a waste of memory space
At this time, you need to use java The provided StringBuild class solves this problem
StringBuilder is also called a variable character sequence. It is a string buffer similar to String and can be regarded as a container. Many strings can be held in the container
Variable means that the content in the StringBuilder object is variable
Construction method
public StringBuilder(): Create an empty buffer
public StringBuilder(String srt): Create a buffer that stores str
public StringBuilding reverse(): Reverse the buffer data
String string = new StringBuilder(abc).reverse().toString();
System.out.println(string);
Copy after login
Date class
java.util.Date Represents a specific moment, accurate to milliseconds
Construction method
public Date(): The current date object, the millisecond value elapsed from the time when the program is run to the time origin, is converted into a Date object, allocates a Date object and initializes this object to represent the time at which it is allocated (accurate to milliseconds).
public Date(long date): Convert the millisecond value date of the specified parameter into a Date object, allocate the Date object and initialize this object
Time origin : January 1, 1970 00:00:00 China is in the East 8th District. Strictly speaking, it is January 1, 1970 00:08:00 1s = 1000ms
public static void main(String[] args) {
// 创建日期对象,把当前的时间
System.out.println(new Date()); // Tue Jan 16 14:37:35 CST 2020
// 创建日期对象,把当前的毫秒值转成日期对象
System.out.println(new Date(0)); // Thu Jan 01 08:00:00 CST 1970
}
Copy after login
getTime
long getTime(): Get the millisecond value of the date object
// 获取从 时间原点 到 当前日期 的毫秒值
long time = nowTime.getTime();
System.out.println(time);
java.text.DateFormat is an abstract class of date/time formatting subclass, we can use this class to help us complete it Conversion between date and text, that is, you can convert back and forth between Date object and String object.
SimpleDateFormat
Since DateFormat is an abstract class and cannot be used directly, a commonly used subclass java.text.SimpleDateFormat is required. This class requires a pattern (format) to specify the standard for formatting or parsing.
Construction method
public SimpleDateFormat(): Constructs SimpleDateFormat using the default mode and locale date format symbols.
The default format is: (year)-(month)-(day) (am/pm)xx:xx
public SimpleDateFormat(String pattern) : Constructs a SimpleDateFormat with the given pattern and date format symbols of the default locale.
The parameter pattern is a string representing a custom format for date and time.
Commonly used format rules are:
Identifier letters (case sensitive)
Meaning
y
年
M
月
d
日
H
hours
m
minutes
s
Seconds
Note: For more detailed format rules, please refer to the API documentation of the SimpleDateFormat class.
Convert date object to string
public String format(Date date): Pass the date object and return the formatted string.
// 将当前日期 转换为 x年x月x日 xx:xx:xx
Date nowTime = new Date();
DateFormat df = new SimpleDateFormat("yyyy年MM月dd日 HH:mm:ss E");
System.out.println(df.format(nowTime));
Copy after login
Convert string to date object
public Date parse(String source) Pass the string and return the date object
// 获取sDate所代表的时间的毫秒值
String sDate = "1949-10-01";
DateFormat df2 = new SimpleDateFormat("yyyy-MM-dd");
// parse 若无法解析字符串会抛出异常 ParseException
Date date = df2.parse(sDate);
long time = date.getTime();
System.out.println(time);
Copy after login
Calendar class
java.util.Calendar Calendar calendar class, replaces many Date methods
It is an abstract class, but provides static methods to create objects, and also provides Many static attributes
Month 0-11 represents January-December The first day of the week abroad is Sunday
getInstance
public static Calendar getInstance(): Get a calendar using the default time zone and locale.
Calendar c = Calendar.getInstance();
System.out.println(c);
Copy after login
Static attributes and their corresponding fields
Use class name.property name to call, representing the given calendar field:
Field value
Meaning
YEAR
年
MONTH
Month (starts from 0, can be used as 1)
DAY_OF_MONTH
Day of the month (number)
HOUR
hour (12-hour format)
HOUR_OF_DAY
hour (24-hour format)
MINUTE
Minutes
SECOND
Seconds
##DAY_OF_WEEK
Week Day in (day of the week, Sunday is 1, you can use -1)
get
int get(int field): 返回给定日历字段的值
int year = c.get(Calendar.YEAR);
// 0-11表示月份 需要+1
int month = c.get(Calendar.MONTH) + 1;
// DATE 和 DAY_OF_MONTH 的值是一样的
int day = c.get(Calendar.DAY_OF_MONTH);
System.out.println(year+"年"+month+"月"+day+"日");
void set(int year, int month, int date) 直接设置年月日为指定值
// set(int field, int value)方法 将日历设置为2001.4.2
c.set(Calendar.YEAR, 2001);
c.set(Calendar.MONTH, 3);
c.set(Calendar.DAY_OF_MONTH, 2);
System.out.println(c.get(Calendar.YEAR)+"."+(c.get(Calendar.MONTH) + 1)+"."+c.get(Calendar.DAY_OF_MONTH));
// set(int year, int month, int date)方法 将日历设置为2003.10.1
c.set(2003, 9, 1);
System.out.println(c.get(Calendar.YEAR)+"."+(c.get(Calendar.MONTH) + 1)+"."+c.get(Calendar.DAY_OF_MONTH));
Copy after login
getTime
Date getTime(): 将日历对象转为日期对象
Date date = c.getTime();
System.out.println(date);
Copy after login
练习
定义一个方法, 使用StringBuild将数组转换为 [元素1,元素2...] 的格式
public class Demo {
public static void main(String[] args) {
int[] arr = {3,765,8234,1,23};
System.out.println(arrayConcatToSting(arr));
}
public static String arrayConcatToSting(int[] arr) {
StringBuilder stringBuilder1 = new StringBuilder("[");
for (int i = 0; i < arr.length; i++) {
stringBuilder1.append(arr[i]);
if (i < arr.length - 1) {
stringBuilder1.append(", ");
} else if (i == arr.length - 1){
stringBuilder1.append("]");
}
}
return stringBuilder1.toString();
}
}
Copy after login
计算一个人活了多少天
import java.text.DateFormat;
import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.Date;
import java.util.Scanner;
public class Demo {
public static void main(String[] args) throws ParseException {
Scanner sc = new Scanner(System.in);
System.out.print("请输入您的生日(年.月.日): ");
System.out.println("您活了"+howLongHaveYouLived(sc.nextLine())+"天");
}
public static long howLongHaveYouLived (String str) throws ParseException {
DateFormat df = new SimpleDateFormat("yyyy.MM.dd");
Date birthDay = df.parse(str);
long birthDayTime = birthDay.getTime();
long nowTime = new Date().getTime();
return (nowTime - birthDayTime) / 1000 / 60 / 60 /24;
}
}
Copy after login
计算指定年份的2月有多少天
import java.util.Calendar;
import java.util.Date;
import java.util.Scanner;
public class Demo {
public static void main(String[] args) {
// 计算指定年份的2月有多少天
Scanner sc = new Scanner(System.in);
System.out.print("请输入您要指定的年份: ");
int inputYear = sc.nextInt();
System.out.println(inputYear+"年的2月有"+getDay(inputYear)+"天");
}
public static int getDay(int year) {
Calendar calendar = Calendar.getInstance();
calendar.set(year, 2, 1);
calendar.add(Calendar.DATE, -1);
return calendar.get(Calendar.DATE);
}
}
Copy after login
The above is the detailed content of How to use Stringbuild, Date and Calendar classes in Java. For more information, please follow other related articles on the PHP Chinese website!
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Java 8 introduces the Stream API, providing a powerful and expressive way to process data collections. However, a common question when using Stream is: How to break or return from a forEach operation?
Traditional loops allow for early interruption or return, but Stream's forEach method does not directly support this method. This article will explain the reasons and explore alternative methods for implementing premature termination in Stream processing systems.
Further reading: Java Stream API improvements
Understand Stream forEach
The forEach method is a terminal operation that performs one operation on each element in the Stream. Its design intention is
PHP is a scripting language widely used on the server side, especially suitable for web development. 1.PHP can embed HTML, process HTTP requests and responses, and supports a variety of databases. 2.PHP is used to generate dynamic web content, process form data, access databases, etc., with strong community support and open source resources. 3. PHP is an interpreted language, and the execution process includes lexical analysis, grammatical analysis, compilation and execution. 4.PHP can be combined with MySQL for advanced applications such as user registration systems. 5. When debugging PHP, you can use functions such as error_reporting() and var_dump(). 6. Optimize PHP code to use caching mechanisms, optimize database queries and use built-in functions. 7
PHP and Python each have their own advantages, and the choice should be based on project requirements. 1.PHP is suitable for web development, with simple syntax and high execution efficiency. 2. Python is suitable for data science and machine learning, with concise syntax and rich libraries.
Capsules are three-dimensional geometric figures, composed of a cylinder and a hemisphere at both ends. The volume of the capsule can be calculated by adding the volume of the cylinder and the volume of the hemisphere at both ends. This tutorial will discuss how to calculate the volume of a given capsule in Java using different methods.
Capsule volume formula
The formula for capsule volume is as follows:
Capsule volume = Cylindrical volume Volume Two hemisphere volume
in,
r: The radius of the hemisphere.
h: The height of the cylinder (excluding the hemisphere).
Example 1
enter
Radius = 5 units
Height = 10 units
Output
Volume = 1570.8 cubic units
explain
Calculate volume using formula:
Volume = π × r2 × h (4
PHP and Python each have their own advantages and are suitable for different scenarios. 1.PHP is suitable for web development and provides built-in web servers and rich function libraries. 2. Python is suitable for data science and machine learning, with concise syntax and a powerful standard library. When choosing, it should be decided based on project requirements.
PHP is suitable for web development, especially in rapid development and processing dynamic content, but is not good at data science and enterprise-level applications. Compared with Python, PHP has more advantages in web development, but is not as good as Python in the field of data science; compared with Java, PHP performs worse in enterprise-level applications, but is more flexible in web development; compared with JavaScript, PHP is more concise in back-end development, but is not as good as JavaScript in front-end development.
Java is a popular programming language that can be learned by both beginners and experienced developers. This tutorial starts with basic concepts and progresses through advanced topics. After installing the Java Development Kit, you can practice programming by creating a simple "Hello, World!" program. After you understand the code, use the command prompt to compile and run the program, and "Hello, World!" will be output on the console. Learning Java starts your programming journey, and as your mastery deepens, you can create more complex applications.