现有: <br /> class Bird { <br /> void talk() { System.out.print("chirp "); }        <br /> } <br /> class Parrot2 extends Bird { <br /> protected void talk() { System.out.print("hello ");       <br /> public static void main(String [] args) { <br /> Bird [] birds = {new Bird(), new Parrot2 () };        <br /> for( Bird b : birds)         <br /> b.talk () ;        <br /> }        <br /> } <br /> 结果是什么 ?()      
A、 chirp chirp
B、 hello hello
C、 chirp hello
D、编译错误