剑指Offer 4 替换空格

题目描述

请实现一个函数,将一个字符串中的空格替换成“%20”。例如,当字符串为We Are Happy.则经过替换之后的字符串为We%20Are%20Happy。

解法

对于全部字符扫描,创建一个StringBuilder,字符不是空格就append(),是空格就append(%20);

more >>

Java 读书笔记 21.1并发

并发

终于来到这里了,好开心;

线程定义

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
public class Liftoff implements Runnable{ //接口
@Override
public void run() { //实现run方法
}
}
public static void main(String []arg){
//第一种
Liftoff liftoff = new Liftoff();
liftoff.run();
//第二种
Thread thread = new Thread(new Liftoff());
thread.start();
}
}

more >>