public class Book {
int pages;
String title;
String author;
double price;
Book(int pages, String title, String author, double price) {
this.pages = pages;
/*
* this.pages се отнася към атрибута на класа pages се отнася за
* атрибута на конструктура
*/
this.title = title;
this.author = author;
this.price = price;
}
void setPrice(double price) {
this.price = price;
System.out.println("Цената е променена на " + price );
}
String getAuthor() {
return "Авторът е " + this.author;
}
String getTitle () {
return "Заглавието на книгата е " + this.title;
}
double getPrice() {
return this.price;
}
public static void main(String args[]) {
String alex = "Aleksandrina Angelova";
String price = "Цената на книгата е ";
Book b1 = new Book(100, "Lonely day", "Aleksandrina Angelova", 16.99);
Book b2 = new Book(900, "The Sunset of My Life", alex, 20.78);
System.out.println(b1.getAuthor());
System.out.println(b1.getTitle());
System.out.println(price + b1.getPrice());
b1.setPrice(20.99);
System.out.println(price + b1.getPrice());
}
}
No comments:
Post a Comment