function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
jadentjadent 

Call a super method?

I know you can call a super's constructor. Is there a way to call a super classes overriden method?
WesNolte__cWesNolte__c

Hey

 

This question is interesting, so I tried it out, and slap-me-silly, it works quite nicely. So yes, it does work, and syntax would be:

 

super.myMethod();

 

Wes