What is the translation of " ASSIGNMENT OPERATOR " in Chinese?

[ə'sainmənt 'ɒpəreitər]
[ə'sainmənt 'ɒpəreitər]
赋值操作符

Examples of using Assignment operator in English and their translations into Chinese

{-}
  • Political category close
  • Ecclesiastic category close
  • Programming category close
Assignment Operator.
Next, still on line 6, we see an assignment operator.
接着,还是在第6行,我们看到有个赋值运算符
Bitwise AND assignment operator. c&= 2 is same as c= c& 2.
按位并赋值运算符C&=2相当于C=C&2.
Next, still on line 6, we see an assignment operator.
接下来,仍然在第6行,我们看到一个赋值操作符
Have assignment operators return a reference to*this.
赋值操作符返回一个referenceto*this。
Next, still on line 6, we see an assignment operator.
接下来,仍然是第6行,我们看到了一个赋值运算符
The= symbol is called the assignment operator in Python(and many other languages).
符号在Python(以及许多其它语言)中叫做赋值运算符
Compound multiplication*= Multiply AND assignment operator.
复合乘*=乘AND赋值运算符
Assignment operator and those names can be used in defining other types and values.
的分配符(::=)给类型和值指定名字,这些名字可以用于定义其它类型或值。
Given that x=10 and y=5, the table below explains the assignment operators:.
给定x=10和y=5,下面的表格解释了赋值运算符:.
The implicitly-declared move assignment operator would not be defined as deleted.
隐式声明的移动赋值运算符不会定义为被删除,.
The assignment operator in the above example has the side effect of changing the value of x permanently.
赋值操作符的副作用是可以永久地改变x的值。
For example, B introduced generalized assignment operators, using x=+y to add y to x.
例如,B引入复合(广义)赋值运算符,x=+y用于将y加到x。
Do not use the assignment operator in a place where it can be easily confused with the equality operator..
不要将赋值运算符用在容易与相等关系运算符混淆的地方。
This differs from the above in that it initializes(using the constructor), rather than using the assignment operator.
这与上面不同,它进行了初始化(使用构造函数),而不是使用赋值运算符
You can also use the-= assignment operator to decrease the value of a member of a numeric array.
还可以使用-=赋值运算符减少数值数组的成员的值。
You typically implement the copy constructor, copy assignment operator, and the destructor.
编译器可以自己为class创建defaultconstructor、copyconstructor、copyassignmentoperator,以及destructor。
Note: There are lots of other assignment operators available, but these are the basic ones you should learn now.
Note:虽然有很多可用的赋值运算符,但是这些是你现在应该学习的基本的一类。
Since version 3.0, C++11 declares two additional special member functions on demand:the move constructor and the move assignment operator.
从3.0版开始,C++11根据需要声明了两个额外的特殊成员函数:移动构造函数和移动赋值运算符
The type on the left hand side of the assignment operator must be identical to the type on the right hand side.
赋值运算符左侧的类型必须与右侧的类型相同。
Copy assignment operator is a special assignment operator that is usually used to specify an existing object to others of the same type of object.
重载赋值操作符是一个特别的赋值运算符,通常是用来把已存在的对象指定给其它相同类型的对象。
For union types, the implicitly-defined move assignment operator copies the object representation(as by std::memmove).
对于union类型,隐式定义的移动赋值运算符复制对象表示(如用std::memmove)。
The move assignment operator transfers ownership of a managed resource into the current object, releasing the old resource.
移动分配运算符将受管资源的所有权转移到当前对象中,从而释放旧资源。
For example, the canonical four(constructor, destructor, copy assignment operator, and assignment operator) are formally known as the special member functions.
例如,规范4则(canonicalfour)(特指构造函数、析构函数、拷贝赋值运算符、赋值运算符)被作为那些特定成员函数的正式名称。
Modulus AND assignment operator, It takes modulus using two operands and assign the result to left operand c%= a.
模数和赋值运算符,它使用两个操作数获取模数,并将结果赋给左操作数C%=A相当于C=C%A.
Like C, Swift provides compound assignment operators that combine assignment(=) with another operation.
与C类似,Swift提供复合赋值运算符来结合赋值(=)与其他操作。
Modulus AND assignment operator, It takes modulus using two operands and assign the result to left operand c%= a.
模数和赋值运算符,它使用两个操作数来取模,并将结果分配给左操作数C%=A相当于C=C%A.
Then the compiler will declare a move assignment operator as an inline public member of its class with the signature T& T::operator=(T&&).
则编译器将声明移动赋值运算符为其类的inlinepublic成员,并拥有签名T&T::operator=(T&&)。
Unlike the assignment operator in C and Objective-C, the assignment operator in Swift does not itself return a value.
不像C和Objective-C里的赋值操作符,Swift里的赋值操作符自身并不返回值。
Don't confuse the assignment operator[=](single equal sign) with the comparison operator[==](double equal signs), which evaluates whether two expressions are equal.
不要混淆赋值运算符[=](单个等号)和比较运算符[==](双等号),后者求值两个表达式是否相等。
Results: 30, Time: 0.0271

Word-for-word translation

Top dictionary queries

English - Chinese