Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- opencv
- 아두이노
- apt update
- opencv apt설치
- Google Drive API
- ubuntu
- api사용해서 google drive에 폴더만들기
- 고정ip할당
- translation
- annotating
- google drive 업로드
- opencv resize
- c#
- google drive upload
- vim
- vim명령어
- NodeMCU
- 정보처리기사
- esp32
- Python
- vi
- 정보처리기사후기
- sshkey
- Winform
- rotation
- vtk
- libopencv-dev
- 우분투 opencv 설치
- 아두이노 설치
- opengl
Archives
- Today
- Total
내가 보려고 만든 블로그
정보처리기사 실기 (자바) 본문
반응형
빈칸문제
implements
interface
static
extends
new
이렇게 많이 나오는듯;;
extends는 일반 클래스와 abstract 클래스 상속에 사용되고, implements는 interface 상속에 사용된다.
interface 나오면 implements 반대로 implements가 나오면 interface가 나올수 있다고 생각해야함.
import java.util.*;
import java.lang.*;
import java.io.*;
/* Name of the class has to be "Main" only if the class is public. */
class Car implements Runnable{
int a;
public void run(){
System.out.println("message");
}
}
class Ideone
{
public static void main (String[] args) throws java.lang.Exception
{
// your code goes here
Thread t1 = new Thread(new (빈 칸)());
t1.start();
}
}
답:Car
이런식으로 비우고 나오는데 이럴때 채우는 연습을 해야함.... new도 빈칸으로 나온거 본것같음.. 나올가능성있음;;
스위치
import java.util.*;
import java.lang.*;
import java.io.*;
/* Name of the class has to be "Main" only if the class is public. */
class Ideone
{
public static void main (String[] args) throws java.lang.Exception
{
int i = 3;
int k = 1;
switch(i) {
case 0:
case 1:
case 2:
case 3: k = 0;
case 4: k += 3;
case 5: k -= 10;
default: k--;
}
System.out.println(k);
}
}
-8
스위치문에 break; 가 없기때문에 3부터 쭉 내려옴...;;
break 있는지 없는지 있다면 어디에 있는지 꼭 확인하고 풀어야함.
static
import java.util.*;
import java.lang.*;
import java.io.*;
class Static{
public int a = 20;
static int b = 0;
}
/* Name of the class has to be "Main" only if the class is public. */
class Ideone
{
public static void main (String[] args) throws java.lang.Exception
{
int a;
a = 10;
Static.b = a;
Static st = new Static();
System.out.println(Static.b++);
System.out.println(st.b);
System.out.println(a);
System.out.println(st.a);
}
}
10
11
10
20
반응형
'정보처리기사 공부' 카테고리의 다른 글
2023년 정보처리기사 실기 3회 합격후기 (0) | 2023.11.15 |
---|---|
정보처리기사 실기(파이썬) (0) | 2023.04.28 |
정보처리기사 실기 (c언어2) (0) | 2023.04.26 |
정보처리기사 실기 (c언어) 포인터 (0) | 2023.04.25 |
SQL 정리 (정보처리기사 실기 대비) (0) | 2023.04.24 |