首页 > 其他分享 >TestMemberVar

TestMemberVar

时间:2024-09-25 09:55:38浏览次数:3  
标签:Author int IDEA static var TestMemberVar public


package com.shrimpking.t1;

/**
 * Created by IntelliJ IDEA.
 *
 * @Author : Shrimpking
 * @create 2024/9/14 11:24
 */
public class TestMemberVar
{
    static int var = 1;

    public static void main(String[] args)
    {
        System.out.println("成员变量var= " + var);
    }
}

标签:Author,int,IDEA,static,var,TestMemberVar,public
From: https://blog.51cto.com/u_15356972/12107194

相关文章