목록코딩입문 (1)
대학교
클래스 설명 관련 소스 파일
package com.example.sampleclassintro; import androidx.appcompat.app.AppCompatActivity; import android.os.Bundle; // 클래스 정의 class Human { // 멤버 변수 (속성) public int age; public double height; public boolean korean; public String name; // 멤버 함수 (메소드) // 생성자 Human() { } Human(int age) { this.age = age; } Human(int age, double height, boolean korean, String name) { this.age = age; this.height = height..
공대/안드로이드 스튜디오
2022. 3. 23. 16:01