黑马程序员技术交流社区

标题: static [打印本页]

作者: mz585858    时间: 2016-6-3 22:08
标题: static
是否可以从一个static方法内部发出对非static方法的调用?为什么?
作者: 蓝色风信子    时间: 2016-6-3 22:24
静态只能访问静态,静态随着类的加载而加载,
作者: WemtFox    时间: 2016-6-3 22:29
不能对非静态的访问
作者: 18611643318    时间: 2016-6-3 23:00
本帖最后由 18611643318 于 2016-6-3 23:03 编辑

new 非static方法的类.非static方法()
  1. package com.itheima;

  2. public class Test24 {
  3.         public static void main(String[] args) {
  4.                 new Test24().method();
  5.         }

  6.         void method() {
  7.                 System.out.println("HelloWorld!!!");
  8.         }

  9. }
复制代码

不能直接调用,可以间接调用.

作者: BaronZhang    时间: 2016-6-3 23:06
静态只能访问静态




欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/) 黑马程序员IT技术论坛 X3.2