赞题库-背景图
单项选择题

有如下程序:
#include<iostream>
#include<string>
using namespace std;
class MyBag{
public:
MyBag(string br, string cr):brand(br), color(cr){++count; }
static int GetCount(){return count; }
private:
string brand, color;
static int count;
};
int MyBag::count=0;
int main(){
MyBag one("CityLife", "Gray");
cout<<one.GetCount();
MyBag*ptr=new MyBag("Coach", "Black");
cout<<MyBag::GetCount();
return 0;
}
运行时的输出结果是______。

A.12
B.21
C.22
D.11