Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

B4. * Students should finish reading the whole question first, before answering. O * Given reference, useful methods for accessing Java class ArrayList: add (elt):

image text in transcribed

B4. * Students should finish reading the whole question first, before answering. O * Given reference, useful methods for accessing Java class ArrayList: add (elt): Add element to the end of the list, e.g. arrList.add(elt) get(index): Get an element (with index) in list, e.g. arrList.get(0) size(): Size (total number of elements) of the list, e.g. arrList.size() 0 Based on the given references above and the class City in the last question, define a new Java class BCity for modeling Better Cities with the following requirements. be a) This BCity class is a public subclass of the given class City o This class has a specific instance field named bRList (type ArrayList of string) representing the list of better rules (of string type) governing the better city. o This field is initialized with an empty ArrayList of string. O b) It has one constructor with 3 parameters (String cn, int cP, String[] rules): The first and second parameters are for the name and population of the city object, while the third parameter is for the rules. The body of this constructor first calls the corresponding constructor of its superclass with the two related input parameters. The constructor body then adds all elements of the input array parameter into its own specific field bRList. O O o O o c) It has 2 public methods: The method hasRule() is for checking if the city includes a specific rule string. The method accepts one input argument rule of string type and returns int value. This method checks if the input argument rule appears in the field bRList and matches the string content of an element in the list bRList. The method returns the index number of the first matched element found in the list. The method returns - 1 if no element found in the list matches the input argument rule The method dispRList() is for displaying information of the object on console. The method has no input argument and no return value. The method body first displays the general information of the city, then displays all its rules (one rule in a line) as sample program output below. O O o (Supp Sample Program Output City has: name "B City", Population 4, Rules: "Rule 11" and "Rule 12") City: B City, Pop: 4 Rule 11 Rule 12

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

C++ Database Development

Authors: Al Stevens

1st Edition

1558283579, 978-1558283572

More Books

Students also viewed these Databases questions