일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- string
- SQL
- 파이썬
- c#
- Java
- PANDAS
- math
- Redshift
- Python
- matplotlib
- Apache
- array
- PySpark
- gas
- Excel
- numpy
- Tkinter
- dataframe
- Kotlin
- hive
- Google Excel
- GIT
- Mac
- Google Spreadsheet
- PostgreSQL
- list
- Github
- google apps script
- django
- Today
- Total
목록constructor (3)
달나라 노트
Class의 생성자(Constructor)라는 것을 알아봅시다. using System; public class my_test { public string color; public string size; public my_test(string c, string s) { color = c; size = s; } } class MyProgram { static void Main() { my_test test_obj = new my_test(); string color_info = test_obj.color; string size_info = test_obj.size; Console.WriteLine(color_info); Console.WriteLine(size_info); } } 위 코드를 실행하면 에러가..
Original source = play.kotlinlang.org/byExample/01_introduction/01_Hello%20world Kotlin도 객체 지향 언어이기 때문에 class는 상당히 중요한 개념입니다. Class의 개념 자체에 대해선 아래 링크를 읽어봅시다. cosmosproject.tistory.com/198?category=972064 여기선 Kotlin에서 어떻게 class를 사용하는지를 중점적으로 다뤄봅시다. (미리 말씀드리면 python과 비슷하다고 느끼면 편합니다.) class EmptyClass // 1 class PeopleInfo(val name: String, var age: Int) // 2 fun main() { val emptyclass = EmptyClas..
People.java public class People { String name; String planet; public void setName(String name) { this.name = name; } public void setPlanet(String planet) { this.planet = planet; } } Lisa.java public class Lisa extends People { public static void main(String args[]) { Lisa lisa = new Lisa(); System.out.println(lisa.name); System.out.println(lisa.planet); } } -- Result null null 위처럼 2개의 파일을 만들고 Li..