반응형
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 | 31 |
Tags
- 파이썬
- list
- Python
- Redshift
- GIT
- PANDAS
- PySpark
- Kotlin
- django
- Presto
- array
- dataframe
- PostgreSQL
- Java
- Google Spreadsheet
- Apache
- google apps script
- math
- Tkinter
- hive
- c#
- Github
- numpy
- SQL
- string
- matplotlib
- gas
- Google Excel
- Excel
Archives
- Today
- Total
목록Interface (1)
달나라 노트
Java - interface
Java에는 interface라는 것을 지원합니다. 일단 먼저 interface를 어떻게 사용할 수 있는지 알아봅시다. interface MemberInfo { public void name(); public void team(); } class Member implements MemberInfo{ public void name() { System.out.println("Bella"); } public void team() { System.out.println("Team 1"); } } public class MemberList { public static void main(String args[]) { Member member = new Member(); member.name(); member.team..
Java
2021. 3. 14. 03:52