Javac之关于方法的选择

本文详细解析了Java中方法调用的五种形式及其编译和运行时的步骤,包括确定搜索类、方法签名、参数匹配等关键过程,并通过实例说明了如何在不同情况下正确调用方法。

 

15.12. Method Invocation Expressions

15.12.1. Compile-Time Step 1: Determine Class or Interface to Search 15.12.2. Compile-Time Step 2: Determine Method Signature
15.12.2.1. Identify Potentially Applicable Methods 15.12.2.2. Phase 1: Identify Matching Arity Methods Applicable by Subtyping 15.12.2.3. Phase 2: Identify Matching Arity Methods Applicable by Method Invocation Conversion 15.12.2.4. Phase 3: Identify Applicable Variable Arity Methods 15.12.2.5. Choosing the Most Specific Method 15.12.2.6. Method Result and Throws Types 15.12.2.7. Inferring Type Arguments Based on Actual Arguments 15.12.2.8. Inferring Unresolved Type Arguments
15.12.3. Compile-Time Step 3: Is the Chosen Method Appropriate? 15.12.4. Run-Time Evaluation of Method Invocation
15.12.4.1. Compute Target Reference (If Necessary) 15.12.4.2. Evaluate Arguments 15.12.4.3. Check Accessibility of Type and Method 15.12.4.4. Locate Method to Invoke 15.12.4.5. Create Frame, Synchronize, Transfer Control

 

方法调用的形式主要有5种:

MethodInvocation:
    MethodName ( ArgumentListopt )
    Primary . NonWildTypeArgumentsopt Identifier ( ArgumentListopt )
    super . NonWildTypeArgumentsopt Identifier ( ArgumentListopt )
    ClassName . super . NonWildTypeArgumentsopt Identifier ( ArgumentListopt )
    TypeName . NonWildTypeArguments Identifier ( ArgumentListopt ) 

 

举个例子如下:

class A{
	public void test(){}
}


public class TestMethodInvocation extends A{
	
	public void m1(){}
	public static void m2(){}
	
	
	public void test(){
		m1();
		A a = new TestMethodInvocation();
		a.test();
		super.test();
		TestMethodInvocation.m2();
	}
    
	class C{
		public void m(){
			// It is a compile-time error if C is not a lexically enclosing class of the current class.
			TestMethodInvocation.super.test();
		}
	}
}

  

 

转载于:https://www.cnblogs.com/extjs4/p/7623140.html

评论
成就一亿技术人!
拼手气红包6.0元
还能输入1000个字符  | 博主筛选后可见
 
红包 添加红包
表情包 插入表情
 条评论被折叠 查看
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值