std::uniform_real_distribution<RealType>::a, b
来自cppreference.com
                    
                                        
                    < cpp | numeric | random | uniform real distribution
                    
                                                            
                    |   result_type a() const;  | 
(1) | (C++11 起) | 
|   result_type b() const;  | 
(2) | (C++11 起) | 
返回创建分布所用的参数。
1) 返回 a 分布参数。它定义可能生成的最小值。默认值为 0.0 。
2) 返回 b 分布参数。它定义可能生成的最大值。默认值为 1.0 。
参数
(无)
返回值
1) a 分布参数。
2) b 分布参数。
参阅
|   获取或设置随机参数对象  (公开成员函数)  |