C++boost 语法 - <> 的含义

发布于 2025-01-11 02:48:11 字数 240 浏览 0 评论 0 原文

我用 boost 库生成一个随机数,即:

   boost::random::random_device rng;
   boost::random::uniform_int_distribution<> index_dist(0, chars.size() - 1);

现在我明白了uniform_int_distribution是类,但是空的<>是什么意思?它是一个模板吗?

I was generating a random number with the boost library, namely:

   boost::random::random_device rng;
   boost::random::uniform_int_distribution<> index_dist(0, chars.size() - 1);

Now I understand that uniform_int_distribution is class, but what's the meaning of the empty <>? Is it a template?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

上课铃就是安魂曲 2025-01-18 02:48:11

它确实是一个模板。
如果没有给定的数据类型,它将回退到要使用的默认数据类型。

您可以看到本例中的默认值是常规 int。

https://www.boost.org/ doc/libs/1_51_0/doc/html/boost/random/uniform_int_distribution.html

It is indeed a template.
With no given datatype it will fall back to a default datatype to work with.

You can see that the default in this case is a regular int.

https://www.boost.org/doc/libs/1_51_0/doc/html/boost/random/uniform_int_distribution.html

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文