public class MethodOver {   public void setVar (int a, int b, float c) {   }   }   Which two overload the setVar method?()

A .  Private void setVar (int a, float c, int b) {} B .  Protected void setVar (int a, int b, float c) {} C .  Public int setVar (int a, float c, int b) (return a;) D .  Public int setVar (int a, int b, float c) (return a;) E .  Protected float setVar (int a, int b, float c) (return c;)

时间:2022-08-29 05:24:10 所属题库:SCJP程序员认证考试题库

相似题目