static is a class level variable and non static is an instance variable(object level variable) . So here you declare only static variable and call them different way but same meaning.
this.i
test.i
both treated as class level variable or static variable.