Im 자바에서 절대 초보자이며 문자열 인스턴스 변수를 추가하는 데 도움이 필요합니다. 이는 자바가없는, 이름과 계좌 번호가 포함 된 두 개의 인스턴스 변수를 추가 하시겠습니까?
public Account(double initialBalance, String firstName, String lastName, int accountNumber) {
FirstName = firstName;
LastName = lastName;
AccountNumber = accountNumber;
}
은 아마도 당신은 C 스타일의 포인터 생각했다 : 난 정말 당신은 당신의
String
필드
String
매개 변수 유형을 원하는 내 질문하지만
public class Account {
private int AccountNumber;
private int FirstName;
private int LastName;
// ok here is where im stuck, i realize that Firstname and LastName are not integers but how else can i make a instance variable of them?
private double balance;
public Account(double initialBalance, int getFirstName, int getLastName, int getAccountNumber) {
//Int is not the correct type for FirstName and LastName but I dont know what else to call it. Any ideas?
FirstName = getFirstName;
LastName = getLastName;
AccountNumber = getAccountNumber;
}
같은 사용 문자열을 언급 한 바와 같이? [클래스 및 객체에 대한이 자습서] (http://docs.oracle.com/javase/tutorial/java/javaOO/)를 통해 시작하십시오. –