已知int n=55,则下列正确的引用方法是:A.int &a=n; B . int &b=55; C . int *C=&n; D . float &d=n;
选AB中55是常量,需使用const int &C中C是指针,&n是取地址D中float类型不符合