今天我们谈谈为什么抽象类中不能有静态的抽象方法以及static修饰的方法不能被重写可以被继承 1 static修饰的方法不能被重写可以被继承我们知道static修饰的方法为静态方法,可以直接使用类名.方法名进行调用,即该方法不属于某个对象属于该类. 我们根据下面的例子在看看static修饰的方法是否可以被重写:--------------------- public class StaticLearnig { public static void main(String[] args) { Su…
MSDN上的定义 Use the static modifier to declare a static member, which belongs to the type itself rather than to a specific object. The static modifier can be used with classes, fields, methods, properties, operators, events, and constructors, but it can…
public class Dy { public static void main(String[] args){ int a=6; int b=5; int result=0; Dy dy=new Dy(); //通过类的实例化进行调用 result=dy.Add(a,b); //调用本类方法Add() System.out.println(result); } private int Add(int x,int y){ //定义Add(),该方法没有被static修饰 return x+y;…