Casual Discussion, Warm-up Questions, and Lecture Demo Exercises Q1. Choose

advertisement
Lecture Exercise 05
CS2312 Problem Solving and Programming | www.cs.cityu.edu.hk/~helena
Casual Discussion, Warm-up Questions, and Lecture Demo Exercises
Q1. Choose Answer1 or Answer2 for each question below.
Question
A class is the _____of the blueprint for an object. An object is a specific
_________ of a class.
A Person object contains a name and a gender. The name and gender
are ______ of the Person class.
1
2
Answer1
Answer2
implementation, instance
instance, implementation
methods
instance fields
3
The new operator creates an object and returns _____.
the object
a reference to it
4
A constructor cannot have any return type, even ________.
void
public
An object type variable stores the _________ of an object.
reference
data values
reborn
garbage collection
may still, memory space
recover, garbage
cannot, garbage
collection, memory space
class
5
Suppose we create a Person object as: Person p = new Person(); Later
when we set p to null, and there's no other reference referring to the
Person object, then the created object is eligible for _____ (reclaim heap
memory space).
If an object has no references pointing to it, a program _________ use it.
Java performs automatic _____ by periodically reclaiming the _____
occupied by these objects.
6
7
8
The _______ reference always refers to the currently executing object.
this
9
When several references refer to the same object, these references ___.
cause run-time error
are aliases of each other
10
Suppose p1 and p2 are references, p1==p2 returns true if _________.
they are aliases of each
other
11
The 'equals' method are often re-defined to determine _____.
equality between the
addresses of 2 objects
the objects referred by
them contain the same
data
equality between data of
2 objects
java.lang.Object
java.lang.null
constructor, new
toString, equals
an abstract class, cannot
an interface, can
All Java classes are derived, directly or indirectly, from the _________
class, which is the root of the Java class hierarchy.
The ______ and _______ methods are defined in the Object class and
therefore are inherited by every class in every Java Program.
Given a class, if it contains abstract method(s), then the class must be
declared as ______. It _______ be used to create objects instances.
12
13
14
Q2. Read the following program.
class X {
private int data;
public X(int d) {data=d*2;}
public String toString() {return ""+data;} //a trick to make a string quickly
public void doSomething(X r)
{
X s = new X(8);
System.out.println(this.data);
System.out.println(r.data);
System.out.println(s.data);
}
}
public class Main_X_3Objs
{
public static void main(String[] args)
{
X a = new X(1);
X b = new X(15);
a.doSomething(b);
}
}
(i)
(ii)
Which one is the output of the program?
Output:
Output: 2 30 16 16 16 16 Find the following from the doSomething method:
(a) Implicit parameter (b) Explicit parameter
(c) Local variable
Last modified: 18‐Feb‐2016 Output:
2 2 2 1
Lecture Exercise 05
CS2312 Problem Solving and Programming | www.cs.cityu.edu.hk/~helena
Q3. Choose your answers for the following and Explain
1. Given int[] arr = new int[3];
If we write: arr.length=2;, we get an error: The final/static field array.length cannot be assigned
2. To compare the contents of 2 strings, we can use == / .equals (Topic02 P9)
3. In Java, we can write a swap method with 2 object parameters which swaps the fields of the two
objects / the two objects
4. Static methods can / cannot access non-static instance fields
5. In Q2, the doSomething method of class X can / cannot access private member (data) defined in
class X, even if the members do not belong to the implicit parameter 
Calling object, 'this'
Q4. [Lab02-Q5 Print out a multiplication table with a frame] How to solve?
Sample rundown:
Input the width of the multiplication table (2-10): 6
Input the height of the multiplication table (2-10): 4
/-------------------------------------\
|
1|
2
3
4
5
6 |
|-------------------------------------|
|
2|
4
6
8
10
12 |
|
3|
6
9
12
15
18 |
|
4|
8
12
16
20
24 |
\-------------------------------------/
Last modified: 18‐Feb‐2016 2
Download