Practice Exercises Java - Learn to program performing exercises with Java

Practice Exercises Java

Learn to program performing exercises with Java

12 Lessons Java with the Solutions - 228 Exercises Java with the solutions
For Beginners, Intermediates and Advanceds


App Practice Exercises Java

The human knowledge belongs to the world
¡The infomation should be free!



Photo Album Tarea - Practice Exercises Java


Lesson 6:

Object oriented programming


Exercise 6.2:

Photo Album Tarea


Objetive:

Create a class "PhotoAlbum" with a private attribute "numberOfPages."

It should also have a public method "GetNumberOfPages", which will return the number of pages.

The default constructor will create an album with 16 pages. There will be an additional constructor, with which we can specify the number of pages we want in the album.

Create a class "BigPhotoAlbum" whose constructor will create an album with 64 pages.

Create a test class "AlbumTest" to create an album with its default constructor, one with 24 pages, a "BigPhotoAlbum" and show the number of pages that the three albums have.


Source Code:


package December_19th__b_;
public class BigPhotoAlbum extends PhotoAlbum
{
	public BigPhotoAlbum()
	{
		numberOfPages = 64;
	}
}

package December_19th__b_;
import java.util.*;
public class Main
{
	public static void main(String[] args)
	{
		boolean debug = false;

		//Create an album with its default constructor
		PhotoAlbum myAlbum1 = new PhotoAlbum();
		System.out.println(myAlbum1.GetNumberOfPages());

		//Create an album with 24 pages
		PhotoAlbum myAlbum2 = new PhotoAlbum(24);
		System.out.println(myAlbum2.GetNumberOfPages());

		//Create an BigPhotoAlbum 
		BigPhotoAlbum myBigPhotoAlbum1 = new BigPhotoAlbum();
		System.out.println(myBigPhotoAlbum1.GetNumberOfPages());

		if (debug)
		{
			new Scanner(System.in).nextLine();
		}
	}
}
Exercisey 6.2




Privacy Policy:



Google uses associated advertising companies to serve ads when it visits our website. These companies may use the information they obtain from your visits to this and other websites (not including your name, address, email address, or phone number) to provide you with announcements about products and services that interest you. If you would like to learn more about this practice and know your options to prevent these companies from using this information. Click in... Privacy and Terms of Google.

Cookies

This site uses Google cookies to provide its services, to personalize advertisements and to analyze traffic. Google receives information about your use of this website. More information in... Privacy and Terms of Google.