240 发简信
IP属地:北京
  • externalNativeBuild cmake参数

    一般来说,在android studio中使用cmake进行本地构建时,build.gradle文件是这样: android { ... ...

  • XCode中plain C/C++ Library 和 STL C++ Library的区别

    The differences between the two templates above are subtle. Both compile...

  • c++ 构造函数调用virtual成员函数

    class Base { public: Base() { std::cout << "Base\n"; } ~Base() { std::co...