블로그
- c/c++ volatile 키워드 class Worker { public: worker() : m_bFinish(false), m_bEnd(false) void Stop() { m_bEnd = true; } bool isFinish() { return m_bFinish; } void Start() { ...thread를 생성하고 threead를 호출한다...
- [영진전문대 컴퓨터정보계열] 자바 애플릿의 생명주기 ) "); repaint(); } public void start() { output.append("start() "); repaint(); } public void stop(){ public void paint(Graphics g){ super.paint(g);; g.drawString(output.toString(), 10, 10); } }
- [영진전문대컴퓨터정보계열프로그래밍전공] 12월 6일 수업내용 implements Runnable { public static final int WIDTH = 300; public static final int HEIGHT = 150; private (); add(screen, BorderLayout.CENTER); } public void start() { if(aThread == null) { aThread = new Thread
- [영진전문대학 컴퓨터정보계열] java(자바) 탁구공 여러개 만들기 .*; public class myapplet extends JApplet implements Runnable { public static final int WIDTH = 300; void start() { // (2) if (aThread == null) { aThread = new Thread(this); aThread.start(); } } public
- [영진전문대 컴퓨터정보계열]자바 글자 애니매이션(예제) 핑퐁(Ping Pong) .*; public class myapplet extends JApplet implements Runnable { public static final int WIDTH = 300; void start() { if (aThread == null) { aThread = new Thread(this); aThread.start(); } } public void stop
- [영진전문대 컴퓨터정보계열]자바 글자 애니매이션(예제) frameNumber; private Thread aThread; public void start(){ if(aThread == null){ aThread = new Thread(this ); aThread.start(); } } public void stop(){ if(aThread !
- [영진전문대 컴퓨터정보계열] .*; public class CountDownTest extends JFrame{ private JLabel label; class MyThread extends Thread{ public "); label.setFont(new Font("Serif",Font.BOLD, 100)); add(label); (new MyThread()).start(); se.......
- Unity - 애니메이션 : 애니메이션 스크립팅 AvatarCtrl.cs using UnityEngine; using System; using System.Collections; [RequireComponent(typeof(Animator))] public class AvatarCtrl : MonoBehaviour { protected Animator avatar; // Use this for initialization void Start
- 12일차(10월12일) 문제 .*; public class Baseball { //중복되지 않는 특정 범위의 특정 자릿수를 가지는 숫자를 랜덤하게 발생시키는 메소드 public int[] randomNumber (int start, int end, int size) { int [] result= new int[size]; //start ~ end 까지의 수를 임의의 배열에 초기값으로 지정
- (영진전문대 컴퓨터프로그래밍전공반) JAVA Thread System.out. println("A"); } } public class Chap16 { public static void main(String args[]) { System.out . println("main start!")