반응형
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
- Redshift
- Kotlin
- Python
- Presto
- Java
- gas
- Github
- Google Spreadsheet
- Tkinter
- PostgreSQL
- Google Excel
- 파이썬
- PySpark
- django
- dataframe
- array
- matplotlib
- math
- google apps script
- Excel
- hive
- Apache
- GIT
- numpy
- string
- PANDAS
- SQL
- list
- c#
Archives
- Today
- Total
목록Java method (1)
달나라 노트
Java - method parameter
Original source = www.w3schools.com public class JavaMethodParameter { // method 생성 시 parameter를 전달하도록 만들 수 있습니다. // 아래 예시처럼 method name의 오른쪽 괄호 안에 parameter를 생성해주면 됩니다. // parameter는 콤마로 구분하여 몇개든 전달받을 수 있습니다. public static void testMethod(String name) { System.out.println("I am " + name); } public static void main(String args[]) { testMethod("James"); testMethod("Lisa"); } // 위 예시에서 parameter는 ..
Java
2021. 3. 12. 02:37