class Rectangle { double a,b; public: void input(); void show(); }rect; 现已声明并定义好类 Rectangle,并定义对象 rect , 以下能成功引用其对象成员的是? A. rect.input(); rect.show(); B. rect.a; rect.b; C. Rectangle *p=▭ p-> input() ; p-> show() ; D. Rectangle *p=▭ p-> a ; p-> b ; E. Rectangle *p=▭ (*p). input() ; (*p). show() ; F. Rectangle *p=▭ p. input() ; p. show() ; G. Rectangle &rect1=rect; rect1.input(); rect1.show();