반응형
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
- Tkinter
- numpy
- array
- string
- Mac
- dataframe
- django
- Redshift
- matplotlib
- PostgreSQL
- SQL
- Java
- Python
- Apache
- c#
- Google Excel
- PySpark
- math
- list
- 파이썬
- google apps script
- hive
- PANDAS
- Google Spreadsheet
- Github
- Kotlin
- GIT
- Excel
- gas
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