public class pp
{
 int x=5,y=10;
 void setv(int a,int b)
 {
  x=a;
  y=b;
 }
  int get_1()
 {
  return x+y;

 int get_2()
 {
  return x-y;
 }
 public class test extends pp
 {
   int y;
test(int a){
  y=a;
}
 sety(int a,int b)
{
 int get_2(){
 return y;
}
 }
1. 用pp a1=new pp()后,a1.get_1()的内容为_________
2. 用pp a1=new pp()后,a1.setv(10.10)后a1.get_2()内容_________
3. 用test a1=new test(1)后,a1.get_1()的内容为____________
4. 用test a1=new test(-1),a1.setv(5.5)后,a1.get_2内容____________