What are the benefits of using the bean-style accessor

Assignment Help JAVA Programming
Reference no: EM13940876

Suppose that you need a FullName class, which will contain a person's first name and last name. There are two different ways of implementing this.

A. The public variable version:

class FullName
{
public String first;
public String last;
}

B. The bean-style accessor version:

class FullName
{
private String first;
private String last;

public String getFirst() { return first; }
public void setFirst(String s) { first = s; }

public String getLast() { return last; }
public void setLast(String s) { last = s; }
}

Questions:

1. What are the benefits of using the public variable version?

2. What are the benefits of using the bean-style accessor version?

3. Add a constructor to your preferred version, that takes two String parameters and initializes first and last.

Reference no: EM13940876

Questions Cloud

Explain the value of narratives or storytelling : Explain the value of narratives or storytelling. Why might communicating a lesson in story format (oral or written form) be different than providing a set of rules to follow?
Calculates and displays the mortgage payment amount : Write a Java program without a graphical user interface that calculates and displays the mortgage payment amount given the amount of the mortgage, the term of the mortgage, and the interest rate of the mortgage. In this program, hard code the amou..
Form of new products or services : In this task you are required to identify new marketing opportunities for Super Cycles in the form of new products or services not currently offered by Super Cycles.
Purchase a currency option to purchase : Today's date is 1st December 2011. Reynolds Manufacturing has just imported $500,000 of Raw materials from an American company with payment due in three months time. The board are concerned about the adverse economic news relating to the UK econom..
What are the benefits of using the bean-style accessor : Add a constructor to your preferred version, that takes two String parameters and initializes first and last.
Determine the velocity of the piston : At the instant shown, determine the velocity of the piston, the velocity of the point C and the angular velocity of the connecting rod.
The size of a company operating exposure : What is the expected value of the investment in U.S. dollars? b) What is operational exposure? Discuss the factors that may influence the size of a company's operating exposure?
How are the company assets classified : Analyze the information contained in the company's balance sheet and income statement to answer the following questions: Are the assets included under the company's current assets listed in the proper order? Explain your answer. How are the company's..
Define how constitutional interpretation of fourth amendment : Explain how the constitutional interpretation of the First Amendment has evolved over the years. What do you personally foresee as potential future issues with this amendment? Explain.

Reviews

Write a Review

JAVA Programming Questions & Answers

  Set of positive integers and outputs

Write a program that reads in a set of positive integers and outputs how many times a particular number appears in the list. You may assume that the data set has at most 100 numbers and -999 marks the end of the input data.

  Write a main method that will simulate playing the game

On the Monty Hall game show, a contestant is given a choice of three doors. Behind one door is a car and behind the other two doors are goats.

  Create a panel with borderlayout

Create a panel with BorderLayout. Add a button labeled "OK" to the south side of the panel - given the program, show the values of the array

  Elliptic curve encryption

write a program to implement Elliptic Curve encryption/decryption and program will read parameters, plaintext and ciphertextfrom a file named "input.txt" (under the same directory).

  Describe the steps to program development

What is the function of parseFloat and parseInt and what will be result if we send "abcd" through a prompt() input and pass it through parseInt()?

  Write java program to display results in java applet

Write down the java program which displays following results in java applet. Permits the user to enter three numbers (use JOptionPane for this) and prints out average of those value on screen.

  Application that reads the lengths of sides of a triangle

Write a java application that reads the lengths of the sides of a triangle from the user.

  A remote web-based file storage application

Develop a web-based application. The server-side part of the application must be developed using Java Servlets (possibly including JSP). The development of the client (browser) side will typically be a combination of HTML and Javascript.

  Design and code a swing gui to translate test

Use a FLOWLAYOUT with a JTEXTAREA for the source text and separate JTEXTAREA for the translated text. Add a JBUTTON with an event to perform the translation

  Button to increase or decrease the number of the balls

Simulates a bouncing ball. Extend to allow mulitple balls. You can use the +I or -I button to increase or decrease the number of the balls and use teh Suspend and Resume buttoms to freeze the balls or resume bouncing. For each ball, assign a random c..

  Representing an investment value and interest rate

Write a Java test program, all your code should be in the main method that asks the user for two numbers representing an investment value and interest rate.

  Writing a java program that provides simple statistics

You will be writing a Java program that provides simple statistics about the input data. The method stubs are given below. This assignment will give you experience with methods

Free Assignment Quote

Assured A++ Grade

Get guaranteed satisfaction & time on delivery in every assignment order you paid with us! We ensure premium quality solution document along with free turntin report!

All rights reserved! Copyrights ©2019-2020 ExpertsMind IT Educational Pvt Ltd