1
Answer

How do you reset a “$timeout”, and disable a “$watch()”?

Guys help me..
 
Answers (1)
0
Nick Shivhareee

Nick Shivhareee

NA 2.8k 11.9k 7y
NIce question...
  1. Class A  
  2. {  
  3.    public void methodA()  
  4.    {  
  5.      System.out.println("Base class method");  
  6.    }  
  7. }  
  8.   
  9. Class B extends A  
  10. {  
  11.    public void methodB()  
  12.    {  
  13.      System.out.println("Child class method");  
  14.    }  
  15.    public static void main(String args[])  
  16.    {  
  17.      B obj = new B();  
  18.      obj.methodA(); //calling super class method  
  19.      obj.methodB(); //calling local method  
  20.   }  
  21. }