+ 2
Constructors
Java constructors are a damn heck!!
5 Answers
+ 8
Erick Keep practising to write codes đ Good luck
+ 5
Why?? Do you need help?đ
+ 1
đđ
0
yeah, i always seem to forget or misplace them
0
Hope this will help you guys!
import java.util.Scanner;
class Main {
public static void main(String[] args) {
Scanner read = new Scanner(System.in);
String movie = read.nextLine();
int row = read.nextInt();
int seat = read.nextInt();
Ticket ticket = new Ticket(movie, row, seat);
System.out.println("Movie: " + ticket.getMovie());
System.out.println("Row: " + ticket.getRow());
System.out.println("Seat: " + ticket.getSeat());
}
}
class Ticket {
private String movie;
private int row;
private int seat;
//complete the constructor
public Ticket(String movie, int row, int seat) {
this.movie = movie;
this.row = row;
this.seat = seat;
}
public String getMovie() {
return movie;
}
public int getRow() {
return row;
}
public int getSeat() {
return seat;
}
}
Happy coding!