1~100, 스레드 당 인쇄 홀수, 스레드 당 짝수
1부터 100까지, 한 라인은 홀수, 한 라인은 짝수, 순서대로 출력됩니다.
자신이 지금 코드를 써서 여러분을 공유합니다.
public class A {
private int i;
public A() {
// TODO Auto-generated constructor stub
i = 1;
}
synchronized public void printji() {
if (i % 2 == 1) {
System.out.println("Thread id:"+Thread.currentThread().getId()+"--->"+i);
i++;
}
}
synchronized public void printou() {
if (i % 2 == 0) {
System.out.println("Thread id:"+Thread.currentThread().getId()+"--->"+i);
i++;
}
}
public int geti() {
return i;
}
}
public class Thread1 extends Thread {
private A a;
public Thread1(A a) {
// TODO Auto-generated constructor stub
this.a = a;
}
@Override
public void run() {
// TODO Auto-generated method stub
super.run();
while (a.geti() < 100)
a.printji();
}
}
public class Thread2 extends Thread {
private A a;
public Thread2(A a) {
// TODO Auto-generated constructor stub
this.a = a;
}
@Override
public void run() {
// TODO Auto-generated method stub
super.run();
while (a.geti() < 100)
a.printou();
}
}
public class Main {
public static void main(String[] args) {
A a=new A();
Thread1 thread1=new Thread1(a);
Thread2 thread2=new Thread2(a);
thread1.start();
thread2.start();
}
}
//잘못이 있으면 지적해 주시기 바랍니다.
인쇄 결과:
Thread id:9--->1 Thread id:10--->2 Thread id:9--->3 Thread id:10--->4 Thread id:9--->5 Thread id:10--->6 Thread id:9--->7 Thread id:10--->8 Thread id:9--->9 Thread id:10--->10 Thread id:9--->11 Thread id:10--->12 Thread id:9--->13 Thread id:10--->14 Thread id:9--->15 Thread id:10--->16 Thread id:9--->17 Thread id:10--->18 Thread id:9--->19 Thread id:10--->20 Thread id:9--->21 Thread id:10--->22 Thread id:9--->23 Thread id:10--->24 Thread id:9--->25 Thread id:10--->26 Thread id:9--->27 Thread id:10--->28 Thread id:9--->29 Thread id:10--->30 Thread id:9--->31 Thread id:10--->32 Thread id:9--->33 Thread id:10--->34 Thread id:9--->35 Thread id:10--->36 Thread id:9--->37 Thread id:10--->38 Thread id:9--->39 Thread id:10--->40 Thread id:9--->41 Thread id:10--->42 Thread id:9--->43 Thread id:10--->44 Thread id:9--->45 Thread id:10--->46 Thread id:9--->47 Thread id:10--->48 Thread id:9--->49 Thread id:10--->50 Thread id:9--->51 Thread id:10--->52 Thread id:9--->53 Thread id:10--->54 Thread id:9--->55 Thread id:10--->56 Thread id:9--->57 Thread id:10--->58 Thread id:9--->59 Thread id:10--->60 Thread id:9--->61 Thread id:10--->62 Thread id:9--->63 Thread id:10--->64 Thread id:9--->65 Thread id:10--->66 Thread id:9--->67 Thread id:10--->68 Thread id:9--->69 Thread id:10--->70 Thread id:9--->71 Thread id:10--->72 Thread id:9--->73 Thread id:10--->74 Thread id:9--->75 Thread id:10--->76 Thread id:9--->77 Thread id:10--->78 Thread id:9--->79 Thread id:10--->80 Thread id:9--->81 Thread id:10--->82 Thread id:9--->83 Thread id:10--->84 Thread id:9--->85 Thread id:10--->86 Thread id:9--->87 Thread id:10--->88 Thread id:9--->89 Thread id:10--->90 Thread id:9--->91 Thread id:10--->92 Thread id:9--->93 Thread id:10--->94 Thread id:9--->95 Thread id:10--->96 Thread id:9--->97 Thread id:10--->98 Thread id:9--->99 Thread id:10--->100
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
다양한 언어의 JSONJSON은 Javascript 표기법을 사용하여 데이터 구조를 레이아웃하는 데이터 형식입니다. 그러나 Javascript가 코드에서 이러한 구조를 나타낼 수 있는 유일한 언어는 아닙니다. 저는 일반적으로 '객체'{}...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.