Smart pointers
A smart pointer is a data structure that not only acts like a pointer but provides additional functionality. This “smartness” comes from the fact that smart pointers encapsulate additional logical or semantic rules, which are automaticall…
一、C常见关键词
1、auto
auto: 自动类型推断。它可以让编译器根据变量的初始值自动推断出变量的类型。例如:
auto x 42; // x 的类型为 int
auto y 3.14; // y 的类型为 double2、decltype
decltype: 类型推断。它可以根据表达式的类型推断出一个类型。例如&…
对数正态分布(logarithmic normal distribution)是指一个随机变量的对数服从正态分布,则该随机变量服从对数正态分布。对数正态分布从短期来看,与正态分布非常接近。但长期来看,对数正态分布向上分布的数值更多一些。 …