什么是匿名变量?

What are anonymous variables?

A program variable is an abstraction of a computer memory cell or collection of cells. Programmers often think of variable names as names for memory locations, but there is much more to a variable than just a name.

在这种情况下,什么是匿名变量? 下面的语句是什么意思?

Variables without names are called anonymous variables.

您能否提供相同语言的特定示例?

在C++中,const的引用变量可以用常量来初始化。 此时在内存中创建临时变量来抢常量。

const int &ref = 3;

像这样。所以我们可以将这个临时变量称为 "anonymous variable".

变量是您存储值的地方。 'Variable Name' 通常是定位您的 value.For 示例的最简单(也更人性化)的方法,如果我是一个变量,您可以通过调用我的名字以及我的值的组合来获取我的值我的名字叫 'variable'。 但是,并非所有变量都需要 name.Sometimes ,您只需使用它们一次就不再需要它们;在这种情况下,名称是不必要的。

@BAE HA RAM 给出的例子很能说明问题,在这种情况下,您不需要值的名称,而是通过指针引用它(但仍然有该指针的名称)。

另外还有很多匿名的东西,匿名类型,匿名函数等等。创建它们中的大多数是为了避免为您只需要 运行 一次的东西使用太多无意义的名称。

我想知道你使用的是哪种语言,所以可以给出更具体的例子...