我正在读一本关于二叉搜索树的书,然后出现了一些奇怪的事情.我在函数参数中遇到了以下声明.
I am reading a book about Binary Search Tree and something weird came up. I came across the following declaration in a function parameter.
BinaryNode * & t
什么意思?t的地址指针?
What does it mean? Pointer of the address of t?
对于上下文,这是我看到的代码.私有insert 函数是公共insert 函数的辅助函数,私有insert 函数使用递归寻找合适的插入位置.>
For context, this is the code where I saw this. The private insert function is a helper function for public insert function, and private insert function looks for the right place to insert using recursion.
class BST
{
public:
void insert(const Comparable & item)
private:
BinaryNode *root;
struct BinaryNode
{
Comparable element;
BinaryNode *left;
BinaryNode *right;
BinaryNode(const Comparable & theElement, BinaryNode *lt, BinaryNode *rt) :
element(theElement), left(lt), right(rt) {}
}
void insert(const Comparable & item, BinaryNode * & t) const;
};
在你的表达式中 BinaryNode * &t)
BinaryNode* & t
------------- -----
BinaryNode pointer t is reference variable
so t 是对 BinaryNode 类的指针的引用.
so t is reference to pointer of BinaryNode class.
t 的地址指针?
您对 C++ 中的 & 运算符感到困惑.给出一个变量的地址.但语法不同.
You are confused ampersand & operator in c++. that give address of an variable. but syntax is different.
& 在一些变量前面,如下所示:
ampersand & in front of some of variable like below:
BinaryNode b;
BinaryNode* ptr = &b;
但是下面的方式是用于引用变量(它的简单不是指针):
But following way is for reference variable (its simple not pointer):
BinaryNode b;
BinaryNode & t = b;
你的如下:
BinaryNode b;
BinaryNode* ptr = &b;
BinaryNode* &t = ptr;
这篇关于参数中的星号和与号的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持html5模板网!
std::reference_wrapper 和简单指针的区别?Difference between std::reference_wrapper and simple pointer?(std::reference_wrapper 和简单指针的区别?)
常量之间的区别.指针和引用?Difference between const. pointer and reference?(常量之间的区别.指针和引用?)
c++ - 如何从指向向量的指针访问向量的内容?How to access the contents of a vector from a pointer to the vector in C++?(c++ - 如何从指向向量的指针访问向量的内容?)
*& 的含义和**&在 C++ 中Meaning of *amp; and **amp; in C++(*amp; 的含义和**amp;在 C++ 中)
为什么我不能对普通变量进行多态?Why can#39;t I do polymorphism with normal variables?(为什么我不能对普通变量进行多态?)
取消引用已删除的指针总是会导致访问冲突?Dereferencing deleted pointers always result in an Access Violation?(取消引用已删除的指针总是会导致访问冲突?)