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
- JavaScript
- grafana
- On-Premise
- prometheus
- elasticsearch
- 온프레미스
- Kubernetes
- 구조분해 할당
- Endpoints
- Site-to-Site VPN
- vgw
- Proxy Resource
- Await
- cognito
- Service
- CloudFormation
- AWS
- api gateway
- VPC
- docker
- docker swarm
- 옵셔널 체이닝
- optional chaining
- transit gateway
- 비구조화 할당
- Custom Resource
- 단축 평가
- 자바스크립트
- null 병합 연산자
- DynamoDB
Archives
- Today
- Total
만자의 개발일지
[Java] ArrayList 상속으로 foreach 구현 본문
import java.util.ArrayList;
class Node {
String data;
String getData() {
return data;
}
}
// add() 오버로딩
class Nodes extends ArrayList<Node> {
boolean add (String data) {
Node node = new Node();
node.data = data;
return add(node);
}
}
public class Main {
public static void main(String[] args) {
Nodes nodeList = new Nodes();
nodeList.add("123");
nodeList.add("abc");
nodeList.add("가나다");
for(Node n : nodeList) {
System.out.println(n.getData());
}
}
}
'Java > Java' 카테고리의 다른 글
[Java] Annotation 이란 (0) | 2022.01.18 |
---|---|
[Java] SOAP API 사용하기 (feat.Maven) (0) | 2022.01.17 |
[Java] DocumentBuilderFactory 와 DocumentBuilder (1) | 2022.01.14 |
[Java] new 연산자란 (0) | 2021.06.21 |
[Java] 리터럴(literal)이란? (0) | 2021.06.18 |
Comments