1
網頁技術 / 回覆: 請問一下這樣的效果
« 於: 2010-09-07 09:53 »
是要像http://api.jquery.com/slideUp/
這裡說的效果嗎?
這裡說的效果嗎?
這裡允許您檢視這個會員的所有文章。請注意, 您只能看見您有權限閱讀的文章。
package inheritance_interface;
interface Runner {
public void run();
}
class Locomotion {
}
class Vehicle {
}
class Car extends Vehicle {
String hood;
}
class SportsCar extends Car implements Runner {
public void run() {
}
}
class Motorcycle implements Runner {
public void run() {
}
}
public class Howto {
}
which of the following is true of the above?