java - Operand Missing Variable -
int curfreeframe = frametableentry numfreeframes(); the error states "error ';' expected".
everything initialized correctly in methods.
if mean invoke static method, should :
int curfreeframe = frametableentry.numfreeframes(); this assumes numfreeframes static method in frametableentry class (which assumption based entirely on naming conventions used).
Comments
Post a Comment