未能解析指定的重载函数调用。
The specified overloaded function call could not be resolved.
无法计算条件表达式中的重载函数。
An overloaded function in a conditional expression cannot be evaluated.
这使用户能够区分重载函数。
This enables the user to differentiate between overloaded functions.
被重载函数的返回类型可以相同也可以不同。
The return types can be the same or different on overloaded functions.
最后,调用使用char类型的参数的重载函数func。
Finally, it calls the overloaded function func with char type arguments.
调试器支持函数的计算,包括重载函数的计算。
The debugger supports the evaluation of functions, including overloaded functions.
为一组重载函数中的多个函数指定了“C”链接。
"C" linkage is specified for more than one function in a set of overloaded functions.
重载函数,类的子类的实例作为一个参数,如何使用?
Overloaded subclass function that takes an instance of the subclass as a param, how to use?
该信息可用于发现函数的签名,该签名使您能够区分重载函数。
This information can be used to discover the signature of the function which allows you to differentiate between overloaded functions.
在对重载函数设置断点时,断点的位置取决于指定函数的方式。
When you set a breakpoint on an overloaded function, the location of the breakpoint depends on how you specify the function.
在这种情况下,编译器尝试确定哪个重载函数要求最少数量的参数数据类型强制。
In this situation, the compiler attempts to determine which overloaded function requires the least number of data type coercions of the arguments.
检查该重载函数接受的数据类型,并确保参数的数据类型只与一个重载函数相匹配。
Check the data types accepted by the overloaded function and make sure the data types of the arguments match only one overloaded function.
函数重载确定,即函数匹配是将函数调用与重载函数集合中的一个函数相关联的过程。
Function overload resolution (also known as function matching) is the process by which a function call is associated with a specific function from a set of overloaded functions.
出现在相同作用域中的两个函数,如果具有相同的名字而形参表不同,则称为重载函数。
Two functions that appear in the same scope are overloaded if they have the same name but have different parameter lists.
要理解函数重载,必须理解如何定义一组重载函数和编译器如何决定对某一调用使用哪个函数。
To understand function overloading, we must understand how to define a set of overloaded functions and how the compiler decides which function to use for a given call.
实现了一个函数的多个版本,编译器决定何时调用哪个函数。函数的返回值不作为区分重载函数的依据。
Overloading is when you make multiple versions of a function. The compiler figures out which function to call. Overloading does not take return type to differentiate overloaded method.
调用重载的函数时,将调用其参数最密切匹配传递参数的重载函数,具体取决于传递给函数的实际参数类型。
When an overloaded function is called, the overloaded function whose arguments most closely match the passed arguments is called, depending on the actual types of arguments passed to the function.
你可以在名为Initialize的重载函数中编写代码,从而在载入你的包时与VisualStudio交互。
The override function named Initialize is where you can put code to interact with Visual Studio when your package is loaded.
如果希望在不同编程语言中可以使用相同的方法调用这个函数,应该使用重载函数替换使用默认参数的函数。
To maintain the behavior that you want across programming languages, methods that use default parameters should be replaced with method overloads that provide the default parameters.
函数和方法的默认参数极大地减少了需要创建的重载方法数量。
Default arguments on functions and methods greatly reduce the number of overloaded methods you need to create.
不支持探测重载和多态的函数。
Probing of overloaded and polymorphic functions is not supported.
在编写扩展函数时,应谨慎处理根据实参类型进行的方法重载。
Be cautious about method overloading based on argument type when you write extension functions.
一般情况下,没有必要重载成员函数GetSite 。
Usually there's no need to override the GetSite member function.
构造函数方法使用标准化的方法来确保重载值中不包含XML解析器所使用的符号。
The constructor method uses the normalize method to ensure that the override value strings do not contain symbols used by XML parser.
因此请总是确认你已经为你的类型重载了以上函数,不要以任何方式依赖于缺省实现。
Therefore always make sure that you overload the functions for your types and do not rely on the defaults in any way.
因此请总是确认你已经为你的类型重载了以上函数,不要以任何方式依赖于缺省实现。
Therefore always make sure that you overload the functions for your types and do not rely on the defaults in any way.
应用推荐