摘要:
条款7辨别使用()与{}创建对象的差别基础知识 目前已知有如下的初始化方式:int x(0);int y = 0;int z{0};int z = {0}; // the same as above 在以“=”初始化的过程中没有调用赋值运算,如下例所示:Widget w1; // default... 阅读全文
摘要:
8. Introducing Spring BootGoals of spring boot:Provide a radically faster and widely accessible getting started experience for all Spring development.... 阅读全文