프로세스/다중 스레드
,
라인
Thread
MyThread thread = new MyThread();
thread.start();//
Runnable
MyRunnable runnable = new MyRunnable();
new Thread(runnable).start();
API
Thread
getName()
currentThread()
sleep()
?
, 。
?
。
타이머 생성
1.Timer TimerTask
//5
//
// ,
Timer timer = new Timer();
timer.schedule(new TimerTask() {
@Override
public void run() {
//
}
}, 5*1000);
//5 , 2
Timer timer = new Timer();
//5
timer.schedule(new TimerTask() {
@Override
public void run() {
//
}
}, 5*1000,2*1000);
스레드 동기화synchronized
1.
synchronized (this) {
}
2.
public synchronized void output(){}
Java Test.class
스레드 통신 -wait/notify
Lock&Condition
Lock synchronized , 。
。 ,
Lock , , 。
스레드 범위 내의 공유 데이터
// ,
public class ThreadShareData1 {
private static int data = 0;
static class A{
public void get(){
System.out.println(Thread.currentThread().getName()+" a:"+data);
}
}
static class B{
public void get(){
System.out.println(Thread.currentThread().getName()+" b:"+data);
}
}
public static void main(String[] args) {
for(int i = 0;i<5;i++){
new Thread(new Runnable() {
@Override
public void run() {
data = new Random().nextInt(100);
System.out.println(Thread.currentThread().getName()+" input data :"+data);
new A().get();
new B().get();
}
}).start();
}
}
}
// ,
public class ThreadShareData {
private static Map threadData = new HashMap();
static class A{
public void get(){
int data = threadData.get(Thread.currentThread());
System.out.println(Thread.currentThread().getName()+" a:"+data);
}
}
static class B{
public void get(){
int data = threadData.get(Thread.currentThread());
System.out.println(Thread.currentThread().getName()+" b:"+data);
}
}
public static void main(String[] args) {
for(int i = 0;i<5;i++){
new Thread(new Runnable() {
@Override
public void run() {
int data = new Random().nextInt(100);
System.out.println(Thread.currentThread().getName()+" input data :"+data);
threadData.put(Thread.currentThread(), data);
new A().get();
new B().get();
}
}).start();
}
}
}
//Java ,
// ,
// : ThreadLocal , 。 , ThreadLocal 。
// 。
public class ThreadShareData {
// map
private static ThreadLocal tl = new ThreadLocal();
static class A{
public void get(){
int data = tl.get();
System.out.println(Thread.currentThread().getName()+" a:"+data);
}
}
static class B{
public void get(){
int data = tl.get();
System.out.println(Thread.currentThread().getName()+" b:"+data);
}
}
public static void main(String[] args) {
for(int i = 0;i<5;i++){
new Thread(new Runnable() {
@Override
public void run() {
int data = new Random().nextInt(100);
System.out.println(Thread.currentThread().getName()+" input data :"+data);
tl.set(data);
new A().get();
new B().get();
}
}).start();
}
}
}
// , ,
class User{
private int id;
private String name;
public int getId() {
return id;
}
public void setId(int id) {
this.id = id;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
}
public class ThreadShareData {
// map
private static ThreadLocal tl = new ThreadLocal();
static class A{
public void get(){
User user = tl.get();
System.out.println(Thread.currentThread().getName()+" a:"+user.getName());
}
}
static class B{
public void get(){
User user = tl.get();
System.out.println(Thread.currentThread().getName()+" b:"+user.getName());
}
}
public static void main(String[] args) {
for(int i = 0;i<2;i++){
new Thread(new Runnable() {
@Override
public void run() {
int data = new Random().nextInt(100);
System.out.println(Thread.currentThread().getName()+" input data :"+data);
User user = new User();
user.setId(data);
user.setName("user"+data);
tl.set(user);
new A().get();
new B().get();
}
}).start();
}
}
}
public class Data {
private Data(){}
/**
* ThreadLocal set , map 。
* key ,value 。
* ThreadLocal clear , 。 , 。
* */
private static ThreadLocal map = new ThreadLocal();
public static Data getInstance(){// synchronized
Data data = map.get();
if(data == null){
data = new Data();
map.set(data);
}
return data;
}
private int id;
private String name;
public int getId() {
return id;
}
public void setId(int id) {
this.id = id;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
}
public class ThreadShareData {
// map
static class A{
public void get(){
System.out.println(Thread.currentThread().getName()+" a:"+Data.getInstance().getId());
}
}
static class B{
public void get(){
System.out.println(Thread.currentThread().getName()+" b:"+Data.getInstance().getId());
}
}
public static void main(String[] args) {
for(int i = 0;i<2;i++){
new Thread(new Runnable() {
@Override
public void run() {
int data = new Random().nextInt(100);
System.out.println(Thread.currentThread().getName()+" input data :"+data);
Data.getInstance().setId(data);
new A().get();
new B().get();
}
}).start();
}
}
}
Runnable ,
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
다양한 언어의 JSONJSON은 Javascript 표기법을 사용하여 데이터 구조를 레이아웃하는 데이터 형식입니다. 그러나 Javascript가 코드에서 이러한 구조를 나타낼 수 있는 유일한 언어는 아닙니다. 저는 일반적으로 '객체'{}...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.