您要查找的是不是:
- References were necessary for the support of operator overloading. 要支持运算符重载,引用是必需的。
- Obvious abuses of operator overloading rarely happen in practice. 在实践中很少发生明显的操作符重载滥用。
- Shows how operator overloading can be used to implement a three-valued logical type. 演示如何使用运算符重载实现三值逻辑类型。
- Shows how you can use operator overloading to create a complex number class Complex that defines complex addition. 显示如何使用运算符重载创建定义复数加法的复数类Complex。
- For languages that do not support operator overloading, you can invoke these members by using alternative method syntax. 对于不支持运算符重载的语言,可以通过使用其他方法语法来调用这些成员。
- New language features include loop continuation, guaranteed resource disposal, operator overloading, generic types, and custom events. 新的语言功能包括循环继续、有保证的资源处置、运算符重载、泛型类型和自定义事件。
- This capability seemed like a good idea in C++,so operator overloading was added to C++ to allow the C++ programmer to add meanings to almost any operator. 在C++里,这一功能看起来非常不错,所以引入了一项“运算符过载”机制,以便C++程序员为几乎所有运算符增加特殊的含义。
- Unfortunately,operator overloading combined with some of the other restrictions in C++ turns out to be a fairly complicated feature for programmers to design into their classes. 但非常不幸,与C++的另外一些限制结合,运算符过载成为一种非常复杂的特性,程序员在设计自己的类时必须对此有周到的考虑。
- This capability seemed like a good idea in C++, so operator overloading was added to C++ to allow the C++ programmer to add meanings to almost any operator. 在C++里,这一功能看起来非常不错,所以引入了一项“运算符过载”机制,以便C++程序员为几乎所有运算符增加特殊的含义。
- Operator overloading: In C++, the program is allowed to use a single operator name to express several operators. Such a function is called the operator overloading. 在C++语言中,允许程序使用一个操作符名字表示多种操作符。这种功能叫做操作符重载。
- Unfortunately, operator overloading combined with some of the other restrictions in C++ turns out to be a fairly complicated feature for programmers to design into their classes. 但非常不幸,与C++的另外一些限制结合,运算符过载成为一种非常复杂的特性,程序员在设计自己的类时必须对此有周到的考虑。
- Operator overloads for building the tree from an expression. 从一个表达式构建表达式树所需的操作符重载。
- Operator overloading should not be used to provide a syntactic shortcut for non-intuitive operations. 不应使用运算符重载为非直观运算提供语法快捷方式。
- The operator overloading supports the implementation of new types that may be operated upon transparently . C语言的操作符重载,支持可透明操作的新类型的实现。
- Chapter 14 looks at operator overloading, which allows operands of class types to be used with the built-in operators. 第十四章考察了操作符重载,允许将类类型的操作数与内置操作符一起使用。
- Names that begin with or contain an underscore character (_), property accessors, and operator overloading methods are examples of types that might require special treatment by some compilers. 以下划线字符(_)开头或包含下划线字符(_)的名称、属性访问器和运算符重载方法都属于可能要求某些编译器进行特殊处理的类型。
- Developers can take advantage of an innovative component-oriented language with inherent support for properties, indexers, delegates, versioning, operator overloading, and custom attributes. 开发人员可以利用极富创新的、面向组件的语言以及对于特性、索引器、委派、版本控制、操作人员重载和自定义属性的内在支持。
- In C++, the program is allowed to use a single operator name to express several operators .Such a function is called the operator overloading. 在C++语言中,允许程序使用一个操作符名字表示多种操作符。这种功能中叫做操作符重载。
- Operator overloading in Visual Basic allows you to define the appropriate outcome for operations, such as addition, when applied to instances of your own classes. 应用于自己类的实例时,Visual Basic中的Operator重载允许您定义运算(例如加)的适当结果。
- Do not provide operator overloads unless at least one of the operands is of the type defining the overload. 除非至少有一个操作数属于定义重载的类型,否则不要提供运算符重载。