1 / 17

Static class members

Static class members. Static members. Recall that a static method is one That can be invoked through its class name For example, the methods of Math class are static Variables can be static as well We declare static methods and variables Using the static modifier.

vagustin
Télécharger la présentation

Static class members

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Static class members

  2. Static members • Recall that a static method is one • That can be invoked through its class name • For example, the methods of Math class are static • Variables can be static as well • We declare static methods and variables • Using the static modifier result = Math.sqrt(25)

  3. The static modifier • So far, we have used instance variables • Where each instance of the class • has its own version of the variable • Each object has distinct memory space for each variable • Static variable called class variable • is shared among all instances of a class • There is only one copy of a static variable for all objects • Changing the value of a static variable in one object • Changes it for all of the others

  4. Static Variables • Normally, each object has its own data space, • but if a variable is declared as static, • only one copy of the variable exists private static float price; • Memory space for a static variable • is created when the class is first referenced • All objects instantiated from the class • share its static variables • Changing the value of a static variable • in one object changes it for all others

  5. Static Methods class Helper { public static int cube (int num) { return num * num * num; } } Because it is declared as static, the method can be invoked as value = Helper.cube(5);

  6. Static class members • Static methods cannot reference • Instance variables • Because they don’t exist until an object is created • However, a static method • Can reference static variables

  7. Static members: example • The following example • Keeps track of how many Slogan objects • Have been created using a static variable • And makes this information available using a static method • Refer to SloganCounter.java & Slogan.java

  8. Problem • Problem statement • Prints the first 20 numbers in Fibonacci sequence • Each number is formed by adding previous 2 numbers • Starting with the numbers 0 and 1

  9. Fibonacci series public class Fibonacci { public static void mainspring[] args) { int current, prev = 1, prevprev = 0;// Initialize some variables for(int i = 0; i < 20; i++) { // Loop exactly 20 times current = prev + prevprev; // Next number is sum of previous two System.out.print(current + " "); // Print it out prevprev = prev; // First previous becomes 2nd previous prev = current; // And current number becomes previous } System.out.println(); // Terminate the line, and flush output } }

  10. Outline Software Development Activities Identifying Classes and Objects Static Variables and Methods Class Relationships Interfaces Enumerated Types Revisited Method Design Testing GUI Design and Layout

  11. Class Relationships • Classes in a software system can have various types of relationships to each other • Three of the most common relationships: • Dependency: A uses B • Aggregation: A has-a B • Inheritance: A is-a B • Let's discuss dependency and aggregation further • Inheritance is discussed in detail in Chapter 8

  12. Dependency • A dependency exists when one class • relies on another in some way • We don't want • numerous or complex dependencies among classes • Nor do we want • complex classes that don't depend on others • A good design strikes the right balance

  13. Dependency • Some dependencies occur • between objects of the same class • A method of the class may accept • an object of the same class as a parameter • For example, the concat method of the String class str3 = str1.concat(str2); • This drives home the idea that • the service is being requested from a particular object

  14. Dependency • The following example defines • a class called Rational to represent a rational number • A rational number is a value • that can be represented as the ratio of two integers • Some methods of the Rational class • accept another Rational object as a parameter • See RationalTester.java (page 302) • See RationalNumber.java (page 304)

  15. Aggregation • An aggregate is an object • that is made up of other objects • Therefore aggregation is a has-a relationship • A car has a chassis • An aggregate object contains • references to other objects as instance data • The aggregate object is defined in part • by the objects that make it up

  16. Aggregation • Student object is composed of Address objects • In fact each student has two addresses • School address and home address • See StudentBody.java (page 309) • See Student.java (page 311) • See Address.java (page 312) • An aggregation association is shown in a UML class • diagram using an open diamond at the aggregate end

  17. StudentBody Student - firstName : String - lastName : String - homeAddress : Address - schoolAddress : Address + main (args : String[]) : void + toString() : String Address - streetAddress : String - city : String - state : String - zipCode : long + toString() : String Aggregation in UML

More Related