- 浏览: 129477 次
- 性别:
- 来自: 河北
文章分类
- 全部博客 (93)
- 生活感悟 (1)
- 面试 (3)
- struts2 (1)
- java 综合 (25)
- 杂 (4)
- 数据库综合 (3)
- 数据库-Mysql (2)
- 数据库-SQLServer (0)
- 数据库-Oracle (0)
- 数据库-PostgreSQL (0)
- 数据库-SQLite (0)
- 数据库-MongoDB (0)
- 数据库-Redis (0)
- 操作系统-Windows (4)
- 操作系统-Linux (0)
- 操作系统-Mac (0)
- 操作系统-Unix (0)
- 移动端-Android (0)
- 移动端-IOS (0)
- 开发环境-Eclipse (1)
- 开发环境-IntelliJ IDEA (0)
- JEE-Spring (1)
- JEE-Hibernate (0)
- JEE-Struts2 (1)
- JEE-Struts (0)
- JEE-Spring Cloud (0)
- JEE-Spring Boot (0)
- JEE-接口调试 (0)
- 云计算-Zookeeper (0)
- 云计算-Hadoop (0)
- 云计算-HBase (0)
- 测试-JUnit (0)
- 测试-JMeter (0)
- 项目管理 (0)
- 版本控制 (0)
- 消息中间件 (0)
- 应用服务器-Tomcat (2)
- 应用服务器-Jetty (0)
- 框架-Antlr (0)
- 编程语言-Java (1)
- 编程语言-C# (0)
- 编程语言-C (0)
- 编程语言-Python (0)
- 编程语言-Lua (0)
- 编程语言-Javascript (0)
最新评论
-
java苏打粉:
...
java servlet doPost与doGet方法的理解 -
真狼王:
将禁用脚本测试(Internet Exploer)和禁用脚本调 ...
ie下调试javascript -
javaservers:
说了个大概原理,没做任何实现那。
JDBC连接池 -
yangzhihuan:
都是些实用的技巧.整理是很辛苦了,多谢分享.
jquery 常用技巧
Java代码
public class StringTest2
{
String s1 = "H";
String s2 = "ello";
String s3 = s1 + s2;
String s4 = "H" + "ello";
static String ss1 = "H";
static String ss2 = "ello";
static String ss3 = ss1 + ss2;
static String ss4 = "H" + "ello";
final String fs1 = "H";
final String fs2 = "ello";
final String fs3 = fs1 + fs2;
final String fs4 = "H" + "ello";
static final String sfs1 = "H";
static final String sfs2 = "ello";
static final String sfs3 = sfs1 + sfs2;
static final String sfs4 = "H" + "ello";
public static void main(String[] args)
{
StringTest2 st = new StringTest2();
st.test1();
}
public void test1()
{
String str1 = "H";
String str2 = "ello";
String str3 = "Hello";
String str4 = str1 + str2;
String str5 = "H" + "ello";
//1
System.out.println(str3 == str4);
System.out.println(str3 == str5);
//2
System.out.println();
System.out.println(str3 == s3);
System.out.println(str3 == s4);
//3
System.out.println();
System.out.println(str3 == ss3);
System.out.println(str3 == ss4);
//4
System.out.println();
System.out.println(str3 == fs3);
System.out.println(str3 == fs4);
//5
System.out.println();
System.out.println(str3 == sfs3);
System.out.println(str3 == sfs4);
}
}
public class StringTest2
{
String s1 = "H";
String s2 = "ello";
String s3 = s1 + s2;
String s4 = "H" + "ello";
static String ss1 = "H";
static String ss2 = "ello";
static String ss3 = ss1 + ss2;
static String ss4 = "H" + "ello";
final String fs1 = "H";
final String fs2 = "ello";
final String fs3 = fs1 + fs2;
final String fs4 = "H" + "ello";
static final String sfs1 = "H";
static final String sfs2 = "ello";
static final String sfs3 = sfs1 + sfs2;
static final String sfs4 = "H" + "ello";
public static void main(String[] args)
{
StringTest2 st = new StringTest2();
st.test1();
}
public void test1()
{
String str1 = "H";
String str2 = "ello";
String str3 = "Hello";
String str4 = str1 + str2;
String str5 = "H" + "ello";
//1
System.out.println(str3 == str4);
System.out.println(str3 == str5);
//2
System.out.println();
System.out.println(str3 == s3);
System.out.println(str3 == s4);
//3
System.out.println();
System.out.println(str3 == ss3);
System.out.println(str3 == ss4);
//4
System.out.println();
System.out.println(str3 == fs3);
System.out.println(str3 == fs4);
//5
System.out.println();
System.out.println(str3 == sfs3);
System.out.println(str3 == sfs4);
}
}
输出如下:
Java代码
false
true
false
true
false
true
true
true
true
true
public class StringTest2
{
String s1 = "H";
String s2 = "ello";
String s3 = s1 + s2;
String s4 = "H" + "ello";
static String ss1 = "H";
static String ss2 = "ello";
static String ss3 = ss1 + ss2;
static String ss4 = "H" + "ello";
final String fs1 = "H";
final String fs2 = "ello";
final String fs3 = fs1 + fs2;
final String fs4 = "H" + "ello";
static final String sfs1 = "H";
static final String sfs2 = "ello";
static final String sfs3 = sfs1 + sfs2;
static final String sfs4 = "H" + "ello";
public static void main(String[] args)
{
StringTest2 st = new StringTest2();
st.test1();
}
public void test1()
{
String str1 = "H";
String str2 = "ello";
String str3 = "Hello";
String str4 = str1 + str2;
String str5 = "H" + "ello";
//1
System.out.println(str3 == str4);
System.out.println(str3 == str5);
//2
System.out.println();
System.out.println(str3 == s3);
System.out.println(str3 == s4);
//3
System.out.println();
System.out.println(str3 == ss3);
System.out.println(str3 == ss4);
//4
System.out.println();
System.out.println(str3 == fs3);
System.out.println(str3 == fs4);
//5
System.out.println();
System.out.println(str3 == sfs3);
System.out.println(str3 == sfs4);
}
}
public class StringTest2
{
String s1 = "H";
String s2 = "ello";
String s3 = s1 + s2;
String s4 = "H" + "ello";
static String ss1 = "H";
static String ss2 = "ello";
static String ss3 = ss1 + ss2;
static String ss4 = "H" + "ello";
final String fs1 = "H";
final String fs2 = "ello";
final String fs3 = fs1 + fs2;
final String fs4 = "H" + "ello";
static final String sfs1 = "H";
static final String sfs2 = "ello";
static final String sfs3 = sfs1 + sfs2;
static final String sfs4 = "H" + "ello";
public static void main(String[] args)
{
StringTest2 st = new StringTest2();
st.test1();
}
public void test1()
{
String str1 = "H";
String str2 = "ello";
String str3 = "Hello";
String str4 = str1 + str2;
String str5 = "H" + "ello";
//1
System.out.println(str3 == str4);
System.out.println(str3 == str5);
//2
System.out.println();
System.out.println(str3 == s3);
System.out.println(str3 == s4);
//3
System.out.println();
System.out.println(str3 == ss3);
System.out.println(str3 == ss4);
//4
System.out.println();
System.out.println(str3 == fs3);
System.out.println(str3 == fs4);
//5
System.out.println();
System.out.println(str3 == sfs3);
System.out.println(str3 == sfs4);
}
}
输出如下:
Java代码
false
true
false
true
false
true
true
true
true
true
发表评论
-
Webservice 报错 Have you run APT to generate them
2013-08-27 10:23 922原因是找不到类 ,生成webservice 后自运生成包装类, ... -
你的java单例安全吗
2010-12-05 20:51 769今天在写一个东西需要用的单例模式,一般的单列模式可分为以下两种 ... -
java 命名规则
2010-11-27 11:43 978变量 第一位为英文小写字母,该英文小写字母代表变数类型。然后 ... -
HashSet和TreeSet的区别
2010-11-27 11:32 993今天学到的,备注一下: 1、Treeset中的数据是自 ... -
java的静态方法和非静态方法
2010-11-27 00:02 849public class Test { p ... -
java之try与finally语句(2)
2010-11-26 23:55 928接上一篇,跟上一篇代码差不多,就是修改了a的值为double类 ... -
java try finally
2010-11-26 23:50 986如下面的代码,结果就不解释了。 Java代码 pub ... -
抽象类和接口区别
2010-11-26 23:47 851如下代码,是使用接口时需要注意的问题。 Java代码 pu ... -
java之final, finally, finalize的区别
2010-11-26 23:44 9641. final 用于声明属性,方法和类,分别表示属性不可变, ... -
求最小公倍数和最大公约数
2010-11-26 23:42 731下面的方法是用递归解决的。如求几个整数的最小公倍数的 ... -
java汉字截取问题
2010-11-26 23:40 778public class Test { p ... -
java之String变量和“==”操作符(1)
2010-11-26 23:26 913先看下面的代码,有助于后面的理解。 Java代码 p ... -
java 之动态绑定和静态绑定
2010-11-26 22:59 852package cn.lifx.test; pub ... -
java基础之"=="操作符
2010-11-26 21:16 622Java代码 public class Test { ... -
java 内部类测试
2010-11-26 20:53 965Java代码 public class OuterInner ... -
java 之继承
2010-11-26 20:48 763public class Test { p ... -
java catch 语句
2010-11-26 20:44 1021public class Test { p ... -
java try catch exception
2010-11-26 20:40 1144public class InputTest { ... -
java类的初始化
2010-11-26 20:35 777Java代码 public class Test1 ... -
无法进入构造方法
2010-11-26 20:32 802刚刚搞定了一个大bug 搞了好几个小时了 问题很简单 ...
相关推荐
Java 中的变量可以分为两种:值类型和引用类型。值类型的变量直接存储在栈中,而引用类型的变量在栈中仅仅存储引用类型变量的地址,而其本身则存储在堆中。 equals 操作表示的是两个变量是否是对同一个对象的引用,...
Java 中的 equals 和 == 是两个常用的操作符,经常用于比较对象或变量的值。然而,许多开发者不知道它们之间的区别,或者误用它们,导致程序出错。下面我们将详细解释 equals 和 == 的区别,并通过实例代码来加深...
本文将深入探讨这两个操作符在Java中的行为,特别是在处理引用类型,尤其是`String`类时的差异。 首先,我们要了解Java中的值类型和引用类型。值类型(如整型、浮点型、字符型等)直接存储在内存的栈中,而引用类型...
在Java语言中,`String`类是用于表示不可变字符序列的核心类之一。它代表了一个字符串对象,一旦被初始化后,其内容不能被改变。这被称为不可变性(Immutability),是Java编程语言的一个关键特性。 **创建String...
在 Java 中,== 操作符和 equals() 方法都是用于比较两个对象是否相等的,但它们的比较规则不同。== 操作符比较的是对象的引用,而 equals() 方法比较的是对象的内容。因此,在实际开发中,需要根据具体情况选择使用...
Java 中的 String 类型是一个基本数据类型,然而在使用 String 类型的时候,我们经常会遇到“==”和 “equal” 两个操作符的使用问题。这两个操作符都是用于比较字符串的,但是它们在比较机制和结果上存在着很大的...
Java 中的 equals 与 == 是两个常用的比较操作符,但是它们的用法和区别却非常重要。理解它们的差异是编写高效、正确的 Java 程序的关键。 什么是 == ? 在 Java 中,== 是一个比较操作符,它用于比较两个变量的值...
- **解析**: 使用三元操作符实现三个数中的最小值选择。 **2. 表达式计算** - **题目描述**: 假设a,n为任意整数(0),编写一个程序,分别求出表达式a, a*2的n次方, A>>n以及a/2的n次方。 - **答案**: ```java ...
`==` 操作符主要用于基本数据类型(如 int, double 等)以及引用类型的变量,它比较的是两个变量所指向的内存地址是否相同,即两个变量是否指向同一个对象实例。而对于基本类型,`==` 直接比较数值是否相等。 `...
本文将深入探讨这两个操作符在Java中的行为,特别是在处理值类型和引用类型时的不同。 首先,值类型如整型(int)、字符型(char)等在内存中的存储位置是在栈中,而引用类型如类实例(对象)则是存储在堆中。栈存储...
- 更新方法:在PATH变量的值中添加 `%JAVA_HOME%\bin` (确保已包含现有路径分隔符)。 3. **CLASSPATH**: - CLASSPATH用于指示Java虚拟机(JVM)在何处查找类文件。默认情况下,JVM会搜索当前目录(".")和所有...
在Java编程语言中,`String` 类是最常用的数据类型之一,用于表示不可变的字符序列。由于字符串在实际开发中的重要性和高频使用特性,深入理解并掌握其用法至关重要。本文档将对`String`类型的一些关键知识点进行...
但是,如果我们使用 new 操作符来创建 String 对象,例如,String str1 = new String("abc"); String str2 = new String("abc"); System.out.println(str1 == str2); // false,这里 str1 和 str2 指向不同的对象。 ...
在 Java 编程中,equals 和 == 是两个常用的比较操作符,但它们之间存在着很大的区别。了解这两者的区别非常重要,因为它直接影响着程序的正确性和效率。 在 Java 中,有两种类型的变量:基本类型和引用类型。基本...
### Java字符串操作详解:String1.java...总的来说,`String1.java`这个简单的示例为我们提供了一个很好的起点,帮助我们理解如何在Java中创建和操作字符串。这对于初学者来说是非常有用的,也是构建更复杂程序的基础。