表 = 新的 HashEntry*[TABLE_SIZE]

发布于 2024-12-22 14:21:52 字数 316 浏览 0 评论 0原文

我正在学习哈希表,并遇到了以下具有奇怪语法的代码行

table = new HashEntry*[TABLE_SIZE];

有人可以向我解释这个语法的含义吗? 我不明白为什么方括号前有一个“*”? 您可以在此处查看包含此代码行的完整代码: http://www.algolist.net/Data_structs /Hash_table/Simple_example

I am learning about hash tables and came across the following line of code with weird syntax

table = new HashEntry*[TABLE_SIZE];

Can somebody explain to me what this syntax means?
I don't understand why there is a '*' before the square brackets?
You can check the full code containing this code line here: http://www.algolist.net/Data_structures/Hash_table/Simple_example

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

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

发布评论

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

评论(3

情绪失控 2024-12-29 14:21:52

它将指针数组分配给 HashEntry

It's allocating array of pointers to HashEntry

烟酒忠诚 2024-12-29 14:21:52

它分配一个指针数组。

table = new HashEntry[TABLE_SIZE]

HashEntry 对象的数组。

table = new HashEntry*[TABLE_SIZE]

是一个 HashEntry 指针数组。

It allocates an array of pointers.

table = new HashEntry[TABLE_SIZE]

is an array of HashEntry objects.

table = new HashEntry*[TABLE_SIZE]

is an array of HashEntry pointers.

最舍不得你 2024-12-29 14:21:52

它是一个大小为 TABLE_SIZE 的数组,其元素是指向 HashEntry 的指针。

It's an array, of size TABLE_SIZE, whose elements are pointers to HashEntry.

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