Guest User

Untitled

a guest
Dec 15th, 2018
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. class B { //B is not allowed to extend any other class other than object
  2. method(){
  3. ....
  4. }
  5. }
  6.  
  7. class A with B {
  8. ....
  9. ......
  10. }
  11. void main() {
  12. A a = A();
  13. a.method(); //we got the method without inheriting B
  14. }
Add Comment
Please, Sign In to add comment