package com.feilong.test.demo;

public class Parent {

    protected static int count;

    protected static int getCount(){
        return count;
    }

}