码迷,mamicode.com
首页 > 其他好文 > 详细

static

时间:2020-12-02 12:32:30      阅读:4      评论:0      收藏:0      [点我收藏+]

标签:int   关键字   public   代码   coding   str   ack   ===   object   

1. static关键字,修饰属性、方法还有代码块,表示类的成员。还可以import static类的方法或者属性。

  package com.oop.demo7;
  import static java.lang.Math.random;

  public class Application {

      public static void main(String[] args) {

          Person p1 = new Person();
          System.out.println("=================");
          Person p2 = new Person();

         System.out.println(random());
      }
  }

  package com.oop.demo7;
 

  public class Person {

      {
          System.out.println("匿名代码块");
      }


      static
      {
          System.out.println("static coding block");
      }

      public Person() {
          System.out.println("object initiated.");
      }
  }

2. final类,无法被继承。

static

标签:int   关键字   public   代码   coding   str   ack   ===   object   

原文地址:https://www.cnblogs.com/langtaoshuo/p/14051149.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!