TAILIEUCHUNG - C# language refference_5

Chapter 7 Expressions class Test { static void F(ref object x) {.} static void Main() { object[] a = new object[10]; object[] b = new string[10]; F(ref a[0]); // Ok F(ref b[1]); // ArrayTypeMismatchException } } the second invocation of F causes an ArrayTypeMismatchException to be thrown because the actual element type of b is string and not object. Overload resolution Overload resolution is a mechanism for selecting the best function member to invoke given an argument list and a set of candidate function members. Overload resolution selects the function member to invoke in the following distinct contexts within C#:. | Chapter 7 Expressions class Test static void F ref object x . static void Main object a new object 10 object b new string 10 F ref a 0 Ok F ref b 1 ArrayTypeMismatchException the second invocation of F causes an ArrayTypeMismatchException to be thrown because the actual element type of b is string and not object. Overload resolution Overload resolution is a mechanism for selecting the best function member to invoke given an argument list and a set of candidate function members. Overload resolution selects the function member to invoke in the following distinct contexts within C Invocation of a method named in an invocation-expression . Invocation of a constructor named in an object-creation-expression . Invocation of an indexer accessor through an element-access . Invocation of a predefined or user-defined operator referenced in an expression and . Each of these contexts defines the set of candidate function members and the list of arguments in its own unique way. However once the candidate function members and the argument list have been identified the selection of the best function member is the same in all cases First the set of candidate function members is reduced to those function members that are applicable with respect to the given argument list . If this reduced set is empty an error occurs. Then given the set of applicable candidate function members the best function member in that set is located. If the set contains only one function member then that function member is the best function member. Otherwise the best function member is the one function member that is better than all other function members with respect to the given argument list provided that each function member is compared to all other function members using the rules in . If there is not exactly one function member that is better than all other function members then the function member invocation is ambiguous and an error occurs. The .

TỪ KHÓA LIÊN QUAN
Đã phát hiện trình chặn quảng cáo AdBlock
Trang web này phụ thuộc vào doanh thu từ số lần hiển thị quảng cáo để tồn tại. Vui lòng tắt trình chặn quảng cáo của bạn hoặc tạm dừng tính năng chặn quảng cáo cho trang web này.