类初始化

在C++中,Solution s = new Solution(); 是错误的

Solution s; or Solution *s = new Solution();是正确的