单项选择题

有如下程序:   #inelude   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