找到 9301 篇文章,关于面向对象编程

在 Java 中按字典顺序比较两个字符串。

Fendadis John
更新于 2020-02-26 06:41:22

6K+ 阅读量

String 类的 compareTo() 方法。此方法按字典顺序比较两个字符串。比较基于字符串中每个字符的 Unicode 值。此 String 对象表示的字符序列与参数字符串表示的字符序列进行字典顺序比较。此方法返回一个负整数,如果当前 String 对象在字典顺序上先于参数字符串;一个正整数,如果当前 String 对象在字典顺序上后于参数字符串;如果字符串相等则返回 true。示例在线演示import java.lang.*; public class StringDemo {    public static void main(String[] args) {       String str1 = "tutorials", str2 = "point";   ... 阅读更多

什么是 Java 字符串字面量?

George John
更新于 2022-09-05 11:34:39

3K+ 阅读量

字符串在 Java 编程中被广泛使用,是一系列字符。在 Java 编程语言中,字符串被视为对象。Java 平台提供 String 类来创建和操作字符串。您也可以直接创建字符串,如下所示:String greeting = "Hello world!";字符串字面量应括在双引号中。每当它在您的代码中遇到字符串字面量时,编译器都会创建一个 String 对象,其值为在这种情况下为“Hello world!”。示例在线演示 public class StringDemo { public static void main(String args[]) { ... 阅读更多

Java 字符串连接程序。

Akshaya Akki
更新于 2020-02-26 05:56:38

133 阅读量

String 类的 concat() 方法将指定的字符串连接到此字符串的末尾。示例import java.lang.*; public class StringDemo {    public static void main(String[] args) {       // 打印 str1       String str1 = "self";       System.out.println(str1);             // 打印 str2 与 str1 连接的结果       String str2 = str1.concat(" learning");       System.out.println(str2);             // 打印 str3 与 str2(和 str1)连接的结果       String str3 = str2.concat(" center");       System.out.println(str3);    } }输出self self learning self learning center

Java String.equals() 与 == 的区别。

Sai Nath
更新于 2020-02-26 06:22:25

208 阅读量

equals() 方法将此字符串与指定的 Object 进行比较。当且仅当参数不为 null 且是表示与此对象相同字符序列的 String 对象时,结果才为 true。示例在线演示public class Sample {    public static void main(String []args) {       String s1 = "tutorialspoint";       String s2 = "tutorialspoint";       String s3 = new String ("Tutorials Point");       System.out.println(s1.equals(s2));       System.out.println(s2.equals(s3));    } }输出true false您还可以使用 == 运算符比较两个字符串。但是,它比较的是对给定... 阅读更多

如何在 Java 中创建 String 对象?

Moumita
更新于 2020-02-26 05:55:48

1K+ 阅读量

您可以通过以下方式创建 String:将用“ ”括起来的字符串值赋给 String 类型的变量。String message = "Hello Welcome to Tutorialspoint";使用 new 关键字创建 String 类的对象,并将字符串值作为其构造函数的参数传递。String message = new String ("Hello Welcome to Tutorialspoint");将字符数组传递给 String 构造函数。char arr[] = {'H','e','l','l','o'}; String message = new String(arr);

在 Java 中连接字符串的最佳方法。

Manikanth Mani
更新于 2020-02-26 06:02:08

147 阅读量

在 Java 中连接字符串的最佳方法是 concat() 方法。此方法将一个 String 附加到另一个 String 的末尾。该方法返回一个 String,其值为传递到该方法中的 String,附加到用于调用此方法的 String 的末尾。示例在线演示public class Test {    public static void main(String args[]) {       String s = "Strings are immutable";       s = s.concat(" all the time");       System.out.println(s);    } } 输出Strings are immutable all the time

Java 字符串与其他数据类型的连接。

Shriansh Kumar
更新于 2024-08-01 11:44:49

1K+ 阅读量

在 Java 中,字符串连接是将两个或多个字符串连接在一起的操作。但是,字符串连接可以与各种原始数据类型一起执行,而不仅仅是与其他字符串一起执行。可以使用 String 类的 concat() 方法连接两个字符串,但是,要将字符串与其他原始数据类型连接,您需要使用“+”运算符。给定的数据类型将自动转换为其字符串表示形式。示例场景:输入:String res = "Age: " + 45;输出:result = Age: 45字符串与 int 的连接int 是 Java 中的一种原始数据类型,它表示数字数据... 阅读更多

在 Java 中连接多个字符串。

Anjana
更新于 2020-02-26 05:43:30

4K+ 阅读量

您可以使用 Java 的“+”运算符连接多个字符串。示例public class Test {    public static void main(String args[]) {       String st1 = "Hello";       String st2 = "How";       String st3 = "You";       String res = st1+st2+st3;       System.out.println(res);    } }输出HelloHowYou

HashMap 和 Hashtable 在 Java 中的区别

Arushi
更新于 2020-06-18 07:12:18

1K+ 阅读量

Hashtable 是最初的 java.util 的一部分,是 Dictionary 的具体实现。但是,Java 2 重新设计了 Hashtable,使其也实现了 Map 接口。因此,Hashtable 现在已集成到集合框架中。它类似于 HashMap,但已同步。与 HashMap 一样,Hashtable 在哈希表中存储键/值对。使用 Hashtable 时,您指定用作键的对象以及您希望链接到该键的值。然后对键进行哈希处理,生成的哈希码用作存储值的索引... 阅读更多

Java 字符串 concat() 方法与“+”运算符

Akshaya Akki
更新于 2019-07-30 22:30:21

229 阅读量

concat() 方法和 + 运算符之间的一些显著区别:concat() 方法+ 运算符您不能使用 concat() 方法将 null 值连接到 String。您可以使用“+”运算符连接 null 值。使用 concat() 方法,您只能连接两个 String 变量。使用“+”运算符,您可以连接多个值。使用 concat() 方法,您只能连接 String 类型的参数。使用“+”运算符,您可以连接任何类型的参数。

广告