import com.nokia.mid.sound.Sound;
...
//   
//     (xH,yH)
public void checkMove(int xH, int yH) {
...
    //    
    //   
    if ( xH == xHeart && yH == yHeart ) {
        eatFlag = true;
        //   
        //  1000   
        Sound beep = new Sound(1000,500);
        //   
        beep.play(1);
        //  
        speed--;
    }
...
}
