Java string comparisons and use of decimal floating-point types

Source: Internet
Author: User

Import Java.text.DecimalFormat;

/*
* A constant of decimal type is a double type by default, and a constant declaring a float type requires the use of f as the suffix.
*
* About Equals () and = =: For a string, it is simple to compare the Unicode sequence of two strings to the equivalent, if equal returns true;
* = = compares the addresses of two strings, that is, whether they are references to the same string.
*/
public class Test {

public static void Main (string[] args) {

Double num=3.237;
System.out.print (num);
Floating-point type must be suffixed with F or f
float num1=3.2f;
System.out.println (NUM1);
String comparisons with the Equals () function
String str= "Hello";
if (Str.equals ("Heldlo")) {
System.out.println ("Two strings identical");
}else{
System.out.println ("Two strings are not the same");
}

}


}

Java string comparisons and use of decimal floating-point types

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.