单项选择题

下述代码执行后,有几个引用变量和几个对象?()  
Student stu = new Student(“Mike”); 
Student stua; 
Stua = stu;  

A. 2个引用变量,1个对象
B. 1个引用变量,1个对象
C. 2个引用变量,2个对象
D. 1个引用变量,2个对象