1 / 13

Announcements & Review

Announcements Lab 2 Due Thursday 10pm 1 file per pair. Last Time: methods logical reuseable parameterizable. Announcements & Review. Today. More on methods in a class Terminology method song calls method chorus song is the caller, chorus is the callee Formal parameters

shandah
Download Presentation

Announcements & Review

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. Announcements Lab 2 Due Thursday 10pm 1 file per pair Last Time: methods logical reuseable parameterizable Announcements & Review Lecture 9: More on Methods

  2. Today More on methods in a class Terminology method song calls method chorus song is the caller, chorus is the callee Formal parameters Actual parameters Call-by-value Call-by-reference Lecture 9: More on Methods

  3. Formal Parametersin the callee method // formal parameters: width, length, s // the variable parameter names in the callee public void printBox(int width, int length, String s) { … } Shapes myshape = new Shapes(); for (int i = 0; i < 3; i++) { myshape.printBox(10, i, “*”); } Lecture 9: More on Methods

  4. Actual Parametersin the caller method public void printBox(int width, int length, String s) { … } Shapes myshape = new Shapes(); for (int i = 0; i < 3; i++) { // actual parameters: 10, i, “*” // the parameters in the caller myshape.printBox(10, i, “*”); } Lecture 9: More on Methods

  5. Does this make sense? public void printBox(int width, int length, String s) { width = 9; ... } Shapes myshape = new Shapes(); for (int i = 0; i < 3; i++) { myshape.printBox(10, i, “*”); } Lecture 9: More on Methods

  6. BlueJ Examples • Try out changing a parameter Lecture 9: More on Methods

  7. Call-by-ValueJava Semantics • Method cannot make externally visible changes to parameters • Can change it internally, but generally this is a bad bad idea. ;-) Lecture 9: More on Methods

  8. Call-by-ReferenceSemantics • Method can make externally visible changes to parameters! • Algol 60 - declare a parameter as call-by-reference • What does this feature mean for actual parameters? Lecture 9: More on Methods

  9. Call-by-ReferenceSemantics • Method can make externally visible changes to parameters! • Algol 60 - declare a parameter as call-by-reference • What does this feature mean for actual parameters? • method calls may change them Lecture 9: More on Methods

  10. Getting aroundCall-by-Value • Method cannot make externally visible changes to parameters • How do we change state with methods then? Lecture 9: More on Methods

  11. Getting aroundCall-by-Value • Method cannot make externally visible changes to parameters • for primitive types & objects • How do we change state with methods then? • return values, but Java only has one! • methods can make persistent changes to the fields of a parameter object object.color = pink; Lecture 9: More on Methods

  12. BlueJ Examples • Let’s try a return value, and passing in an object as a parameter Lecture 9: More on Methods

  13. More Questions? Lecture 9: More on Methods

More Related