易出错的代码整理

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了易出错的代码整理相关的知识,希望对你有一定的参考价值。

 1 public class HelloA {
 2     public HelloA() {
 3         System.out.println("HelloA");
 4     }
 5 
 6     {
 7         System.out.println("lam A class");
 8     }
 9     static {
10         System.out.println("static A");
11     }
12 
13 }
 1 public class HelloB extends HelloA {
 2     public HelloB() {
 3         System.out.println("HelloB");
 4     }
 5 
 6     {
 7         System.out.println("lam B class");
 8     }
 9     static {
10         System.out.println("static B");
11     }
12 
13     public static void main(String[] args) {
14         new HelloB();
15     }
16 }

执行结果:
1
static A 2 static B 3 lam A class 4 HelloA 5 lam B class 6 HelloB

 

1 public class Test {
2     public static void main(String[] args) {
3         String str1 = "Hello";
4         String str2 = "He" + new String("llo");
5         System.out.println(str1 == str2);
6         str2 = "He" + "llo";
7         System.out.println(str1 == str2);
8     }
9 }

比较结果:

false

true

以上是关于易出错的代码整理的主要内容,如果未能解决你的问题,请参考以下文章

VS2015 代码片段整理

IOS开发-OC学习-常用功能代码片段整理

查看发票组代码后的总结和有感

常用python日期日志获取内容循环的代码片段

小程序各种功能代码片段整理---持续更新

map [] 运算符 易出错点