tags:

views:

74

answers:

0

I found this case

** php example **

abstract class class1{  
    function test(){}  
}


abstract class class2 extends class1{  
    abstract function test();  
} 

This oop concept works in Java, in PHP it doesn't.

What other subtle differences there are between Java and PHP oop ?