单项选择题

有如下程序:   #include   usingnamespacestd;   classTest   {   public:   Test(){n+=2;}   ~Test(){n-=3;}   staticintgetNum(){returnn;}   private:   staticintn;   };   intTest::n=1;   intmain()   {   Test*p=neWTest;   deletep;         cout<<"n="<  return0;   }   执行该程序的输出结果是(  )。

A.n=0
B.n=1
C.n=2
D.n=3