I think you're getting a bit confused by
local variables,
static variables and
non-static variables.
int j is a local variable -- it belongs only to the method it is defined in.
int s and
String p are non-static variables -- it belongs to the instance of a class. You have created two instances: cv and cvs.
you don't have any static variables defined. Try modifying one of the non-static variables to use the 'static' modifier, and see what happens, I think you'll get more the behavior you expected. But realize, its VERY bad practice to access a static variable through an instance.