このコードセグメントを検討してください
class StockServer {
StockServer(String company, int Shares,double currentPrice, double cashOnHand) {}
double buy(int numberOfShares, double pricePerShare) {
System.out.println("buy(int,double)");
return 3.0;
}
float buy(long numberOfShares, double pricePerShare) {
System.out.println("buy(long,double)");
return 3.0f;
}
}
このコード行を実行すると、
StockServer a = new StockServer("",2,2.0,2);
byte b=5;
a.buy(b,2);
結果は次のようになります: buy(int,double)
コンパイラがどのメソッドを実行するかを決定する方法を知りたいですか?