반응형
자격증/OCJP_ExamC2018. 7. 24. 02:46QUESTION 23

QUESTION 23 Given: public class Person { private String name; public Person(String name) { this.name = name; } public boolean equals(Object o) { if ( ! ( o instanceof Person) ) return false; Person p = (Person) o; return p.name.equals(this.name); } } Which statement is true? A. Compilation fails because the hashCode method is not overridden. B. A HashSet could contain multiple Person objects wit..

자격증/OCJP_ExamC2018. 7. 24. 02:41QUESTION 22

QUESTION 22 Which two code fragments will execute the method doStuff() in a separate thread? (Choose two.) A. new Thread() { public void run() { doStuff(); } }; B. new Thread() { public void start() { doStuff(); } }; C. new Thread() { public void start() { doStuff(); } }.run(); D. new Thread() { public void run() { doStuff(); } }.start(); E. new Thread(new Runnable() { public void run() { doStuf..

C#에서 Winform을 이용해서 Daum지도 사용하기
프로젝트/C#2018. 7. 24. 02:19C#에서 Winform을 이용해서 Daum지도 사용하기

안녕하세요 . 오늘 다뤄볼 내용은 C#에서 Winform을 사용하여 Daum지도를 연동해 보는 방법을 알아보겠습니다.저는 C# 소규모 프로젝트를 진행하면서 Daum 지도를 사용했었는데요 , 그렇다 보니 daum 지도를 사용할 때 불필요한 클래스 선언이 있을 수 있습니다.양해 부탁드립니다.아참 , 저는 Main winform 내에서 버튼 클릭시 또 다른 winform이 실행 되는 형식으로 프로젝트를 진행하였습니다.1.클래스 선언한 부분입니다. 2. Econtact 는 프로젝트 명이고 , Maps는 또 다른 Winform을 만들어 주었을 때 초기 동기화 부분입니다.3. 22번째 줄은 button 클릭시 실행 되는 Winform 입니다 . '24번째은 winform내에서 입력하는 빈 공백이 있는데 , 이 빈 ..

자격증/OCJP_ExamC2018. 7. 24. 01:20QUESTION 21

QUESTION 21 Click the Exhibit button. class Computation extends Thread { private int num; private boolean isComplete; private int result; public Computation(int num){ this.num = num; } public synchronized void run() { result = num * 2; isComplete = true; notify(); } public synchronized int getResult() { while ( ! isComplete ){ try { wait(); } catch (InterruptedException e) { } } return result; }..

자격증/OCJP_ExamC2018. 7. 24. 01:13QUESTION 20

QUESTION 20 Given: public class PingPong implements Runnable { synchronized void hit(long n) { for (int i = 1; i

자격증/OCJP_ExamC2018. 7. 24. 01:06QUESTION 19

QUESTION 19 Given: foo and bar are public references available to many other threads. foo refers to a Thread and bar is an Object. The thread foo is currently executing bar.wait(). From another thread, what provides the most reliable way to ensure that foo will stop executing wait()? A. foo.notify(); B. bar.notify();C. foo.notifyAll(); D. Thread.notify(); E. bar.notifyAll(); F. Object.notify(); ..

반응형
image