ics.uci.edu

Website:http://ics.uci.edu
Upvotes received0
Downvotes received0
Karma:0 (upvotes-downvotes)



0 earned Badges

No badges were found



Definitions (42)

1

0 Thumbs up   0 Thumbs down

cascaded method calls


In a cascaded method call, we use the result returned by one method (a reference to an object) to immediatley call another method. If we declare String s = "foo";
Source: ics.uci.edu

2

0 Thumbs up   0 Thumbs down

s.touppercase().replace('f'


it returns a result of "GOO"
Source: ics.uci.edu

3

0 Thumbs up   0 Thumbs down

touppercase


is called on the object s
Source: ics.uci.edu

4

0 Thumbs up   0 Thumbs down

foo


; the cascaded method call immediately calls replace
Source: ics.uci.edu

5

0 Thumbs up   0 Thumbs down

goo


Cascaded method calls is similar to composition of functions in mathematics.
Source: ics.uci.edu

6

0 Thumbs up   0 Thumbs down

checked exception


A checked exception is a sublcass of Throwable but not of RunTimeException. Such exceptions generally indicate an extra-logical failure (one not related to programming errors; e.g. EndOfFileException) [..]
Source: ics.uci.edu

7

0 Thumbs up   0 Thumbs down

access modifier


A Java keyword that describes whether/how some class member can be referred to (accessed). Common access modifiers are public
Source: ics.uci.edu

8

0 Thumbs up   0 Thumbs down

private


, protected
Source: ics.uci.edu

9

0 Thumbs up   0 Thumbs down

static


, and final
Source: ics.uci.edu

10

0 Thumbs up   0 Thumbs down

accessor


A Java method that examines the state of an object but does not change it is called an accessor Accessors typically return a result (otherwise, calling one would produce not visible effect). Accessors [..]
Source: ics.uci.edu


To view all 42 definitions, please sign in.