# 字符串基础问题
**题目一**
~~~
public class Test{
public static void main(String[] args){
String s1 = "abc";
String s2 = s1;
String s3 = new String("abc");
String s4 = new String("abc");
String s5 = "abc";
System.out.println(s1==s5);
System.out.println(s1==s2);
System.out.println(s1.equals(s2));
System.out.println(s3==s4);
System.out.println(s1.equals(s4));
System.out.println(s3.equals(s4));
}
}
~~~
输出是 true true true false true true
**题目二**
~~~
String s = "a" + "b" + "c" + "d" + "e"
~~~
创建了几个对象? 1个 赋值号右边都是常量,编译时直接储存它们的字面值, 在编译时直接把结果取出来面成了 "abcde"
**题目三**
~~~
# 创建了几个String Object?二者之间有什么区别?
String s = new String("xyz");
~~~
两个或一个,”xyz”对应一个对象,这个对象放在字符串常量缓冲区,常量”xyz”不管出现多少遍,都是缓冲区中的那一个.New String每写一遍,就创建一个新的对象,它一句那个常量”xyz”对象的内容来创建出一个新String对象.如果以前就用过’xyz’,这句代表就不会创建”xyz”自己了,直接从缓冲区拿.
**题目四**
~~~
String s1 = new String("777");
String s2 = "aaa777";
String s3 = "aaa" + "777";
String s4 = "aaa" + s1;
~~~
s2 == S3 : trues2 == S4 : falses2 == S4.intern() : true
**题目五**
~~~
String str = "ABCDEFGH";
String str1 = str.substring(3,5);
System.oout.println(str1);
~~~
输出是 DE substring 是前包括后不包括
**题目六**
~~~
执行后,原始的String对象中的内容到底变了没有?
String s = "Hello";
s = s + " world!";
~~~
没有.因为String被设计成不可变(immutable)类,所以它的所有对象都是不可变对象.
在这段代码中,s原先指向一个String对象,内容是 "Hello",然后我们对s进行了+操作,这时,s不指向原来那个对象了,而指向了另一个 String对象,内容为"Hello world!",原来那个对象还存在于内存之中,只是s这个引用变量不再指向它了.
- 介绍
- Java 基础
- 请说一说 Java
- Java 为什么是高效的?
- 列举出2个 IDE
- 面向对象的特征有哪些方面
- JDK JRE JVM
- 什么是对象 (Object)?
- 一个类是由哪些变量构成的
- 静态变量和实例变量的区别?
- 封装 Encapsulation
- 多态 Polymorphism
- 构造器是否可以被 override
- 接口 Interface 与抽象 abstract
- 接口和抽象的区别
- 基础概念题
- 基础程序题
- super 关键词
- super 程序题
- this 程序题
- 抽象 abstract
- abstract 相关问题
- this() 和 super() 在构造体里怎么用?
- Static 关键字
- 一个static方法内部调用非static方法?
- Singleton 单例模式
- hashcode 和 equal
- == 和 equal 的区别
- 所有类的基类是哪个类?
- Java 支持多继承吗?
- Path 与 Classpath?
- 反射机制
- final 关键字
- 一个. java 源文件是否可以包含多个类
- & 与 &&
- int 与 integer
- integer 通过 == 比较
- 作用域的区别
- 异常
- error 和 exception?
- Checked 异常与 Runtime 异常
- 异常概念题
- 把对象声明成异常
- 处理异常的方法
- 每一个 try 都必须有一个 catch 吗?
- try 模块里的 return
- final, finally, finalize的区别
- Programme
- 输出问题1
- Gabage Collection
- heap 和 stack
- GC 就一定能保证内存不溢出吗?
- 字节流与字符流
- Connection
- ArrayList 和 Vector
- HashMap 和 Hashtable
- HashMap HashTable LinkedHashMap TreeMap
- Connection 相关问题
- Multi-Thread
- sleep() 和 wait() 的区别
- 同步 synchronized
- 如何实现 muliti-thread?
- Transient 关键字
- preemptive scheduling 和 time slicing?
- 一个线程的初始状态是什么?
- synchronized method 和 synchronized statement?
- 守护线程 daemon thread?
- 所有的线程都必须实现哪个方法?
- Visitor Pattern
- Problem on chain
- 字符串基础问题
- StringBuffer 相关问题
- 数组相关问题
- 序列化 serialization
- 如何序列化一个对象到一个文件?
- 必须实现 Serializable 接口的哪个方法?
- 如何控制 serialization 的过程?
- 什么情况下要使用序列化?
- Externalizable 接口?
- 序列化时引用的处理?
- 序列化时要注意什么?
- 序列化时 static 域的处理?
- J2EE
- 什么是 J2EE?
- J2EE 应用的四个部分?
- What does application client module contain?
- What does web module contain?
- J2EE客户端有哪些类型
- Hibernate是什么??
- 什么是事务 - transaction
- 什么是 servlet?
- 创建 servlet
- Servlet 必须实现什么接口?
- Servlet 生命周期?
- JSP
- JSP 的生命周期?
- JSP 语法
- JSP Actions?
- JSP translation?
- Ear, Jar 和 War 文件?
- URI 和 URL?
- DAO
- Spring
- 什么是 Spring?
- 使用 spring 的好处?
- Spring 都有哪些模块?
- 什么是 Spring 的配置文件?
- 什么是依赖注入 - Dependency Injection?
- IoC 的类型?
- 你更倾向于哪种 DI
- IoC 有什么好处?
- IoC container 是什么?
- IoC 容器的类型?
- ApplicationContext 的实现都有哪些?
- Bean Factory 与 ApplicationContext ?
- 什么是 bean?
- 都有哪些 bean scope?
- Singleton bean 是线程安全的吗?
- 说下 Bean 的生命周期
- 什么是基于注释的容器配置?
- 如何注入 Java Collection?
- 什么是自动装配
- 什么是 AOP?
- 通知的类型?
- Join point?
- Pointcut?
- Introduction?
- How do you provide configuration metadata to the Spring Container?
- How do add a bean in spring application?
- Can you inject null and empty string values in Spring?
- @Autowired @Inject @Resource
- Hibernate
- get and load
- 什么是 SessionFactory?
- SessionFactory 是线程安全的吗?
- 什么是 Session?
- sorted 与 ordered collection
- What is the file extension used for hibernate mapping file?
- hibernate 的三种状态
- Linux
- 查找文件
- 列出文件列表
- 设计一对一
- 设计一对多
- 设计多对多
- 都使用过哪些join?
- inner join
- Left/Right join
- Full join
- 合并的问题
- Union all?
- Where 和 Having
- 通配符 wildcard?
- Scrum
- Scrum 中的三大角色
- What's sprint?
- How to scrum
- Continuous integration
- Statement 和 prepared statement?
- Callable statement
- Stored Procedure and how do you call it in JDBC?
- What does the Class.forName("MyClass") do?
- Connection Pooling ?
- What are the steps in the JDBC connection?