摘要:
FontSize + FramePadding.y * 2 具体参考How to customize titlebar elements? · Issue #1539 · ocornut/imgui (github.com) 阅读全文
摘要:
#pragma comment(linker, "/subsystem:windows /ENTRY:mainCRTStartup") 阅读全文
摘要:
There is some debate in the community regarding the use of the DCT, instead of directly using the log Mel fiterbank features, particularly for deep ne 阅读全文
摘要:
自我察觉,知道并理解自己的意图,能够知晓自己干什么 自我意识,评估并修正自己的意图,能够自主选择干什么 阅读全文
摘要:
1. const静态变量,允许整型或枚举类型成员直接初始化。 2. constexpr静态变量,允许literal类型成员直接初始化。 3. c++17引入inline变量,允许其他类型成员直接初始化。 阅读全文
摘要:
一、通过函数返回值实现 template<class T> typename std::enable_if<std::is_trivially_default_constructible<T>::value>::type construct(T*) { std::cout << "default c 阅读全文