//可以的!
public class StaticTest
{
public static void main(String[] args)
{
System.out.println("\n\t\t如何实现静态方法调用非静态方法有哪些\n");
//方式1:匿名调用!
new StaticTest().show();
//方式2:创建对象调用!
StaticTest st=new StaticTest();
st.show();
}
//非静态方法!
void show()
{
double p=(double)2.0-(double)1.1;
System.out.println("测试调用:非静态方法show.....!"+p);
}
}