👉 기본 환경
- Language: Java
- IDE: Eclipse
⌨️ 코드
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
public static void main(String[] args) throws IOException {
BufferedWriter bw = new BufferedWriter(new OutputStreamWriter(System.out));
bw.write(method1({"hello", "java", "world"}));
bw.flush();
bw.close();
}
public static String method1(String[] sentence) {
StringBuffer sb = new StringBuffer();
for (String s : sentence) {
sb.append(s);
}
return sb.toString();
}
|
🖨️오류
Syntax error, insert 'SimpleName' to complete ArgumentList:
📡 원인
medthod1의 매개변수로 String[]이 전달되어야 함
{}로 객체 생성을 할 수 없음
📰 해결 방법
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
public static void main(String[] args) throws IOException {
BufferedWriter bw = new BufferedWriter(new OutputStreamWriter(System.out));
bw.write(method1(new String[]{"hello", "java", "world"}));
bw.flush();
bw.close();
}
public static String method1(String[] sentence) {
StringBuffer sf = new StringBuffer();
for (String s : sentence) {
sb.append(s);
}
return sb.toString();
}
|
new String[]으로 객체 생성 후, 매개변수로 String[] 전달
'Java > Java with Error' 카테고리의 다른 글
[해결 방법] error: no suitable method found for ... (0) | 2023.10.17 |
---|---|
[해결 방법] java.lang.ClassCastException (0) | 2023.08.15 |
[해결 방법] java.lang.Error (0) | 2023.08.09 |
[해결 방법] java.lang.Error (0) | 2023.06.06 |
[해결 방법] java.lang.Error (0) | 2023.04.09 |