以下程序的输出结果为()
class Demo{
public Demo(String s){
System.out.print("hello");
}
}
public class Test extends Demo{
public Test (String s) {
System.out.print("world");
}
public static void main(String[] args){
new Test("hello world");
}
} 
