Can I Dynamically Overload A Class Method?

11 views (last 30 days)
Hi All,
Context: I'm attempting to overload a method of class without touching the class definition or explicitly declaring a subclass.
Question: Is it possible to dynamically overload a class method either by directly overloading, dynamically creating a subclass, or intercepting method calls?
Prior Work:
The odd error message produced by the following example gives me a dim hope that its possible directly . . .
Here's an example class
classdef Hello
methods
function sayHi(obj)
fprintf('Hi\n')
end
end
end
I then attempt to dynamically override the sayHi function, producing an error as follows:
helloObj = Hello;
sayHola = @(obj) fprintf('Hola\n')
helloObj.sayHi = sayHola;
Assignment not supported because the result of method 'sayHi' is a temporary value.
Is there a way to make "sayHi" produce a non temporary value? Or is that saying that @helloObj.sayHi is itself a temporary value?

Accepted Answer

Vimal Rathod
Vimal Rathod on 29 Jul 2019
A class function cannot be dynamically overloaded without creating subclass. The class protects its methods from getting modified or overloaded from outside as that changes the class definition.
In the given code,
helloObj = Hello;
sayHola = @(obj) fprintf('Hola\n')
helloObj.sayHi = sayHola;
HelloObj.sayHi is a temporary value as it is just an instance of the class and was not defined in the class declaration and thus it gets its own temporary copy of all properties and cannot overload its class functions.
  3 Comments
Guillaume
Guillaume on 29 Jul 2019
I'm surprise that javascript lets you do that. Doesn't improve my opinion of the language.
The whole idea is completely antithetical to encapsulation in OOP, where the class is in control of its own method, so expect the fact you can't do that to be the norm rather than the exception, in languages that implement OOP.
Matthew
Matthew on 29 Jul 2019
Edited: Matthew on 29 Jul 2019
Its frowned upon for javascript too, but interceptors are actually a fairly standard way to implement AOP. Normally you would set yourself up for this though rather than trying to jury rig something after the fact.
Edit: Also you don't need to touch the prototype in javascript to create interceptors.

Sign in to comment.

More Answers (1)

Matt J
Matt J on 29 Jul 2019
Edited: Matt J on 29 Jul 2019
You can't dynamically overload a class method, but you can get the same effect by making function handle properties that dictate the method's behavior. For example,
classdef Hello
properties
greeting=@() fprintf('Hi\n');
end
methods
function sayHi(obj)
obj.greeting();
end
end
end
and now you can make dynamic changes, like
>> helloObj = Hello; helloObj.sayHi
Hi
>> helloObj.greeting = @()fprintf('Hola\n'); helloObj.sayHi
Hola
  4 Comments
Matt J
Matt J on 29 Jul 2019
Edited: Matt J on 29 Jul 2019
Too bad, but maybe if you elaborate on the constraints of the situation, better recommendations can be made. Why exactly can't the class be modified or subclassed? What about a container class:
classdef HelloContainer
properties
HelloObj
end
methods
function obj = HelloContainer(HelloObj)
obj.HelloObj=HelloObj;
end
function sayHi(obj)
fprintf('Hola\n')
end
end
end
Matthew
Matthew on 29 Jul 2019
Edited: Matthew on 29 Jul 2019
Long story short, the constraints are/were non-technical, but require that:
1) The changes need to be made in the code where the object is initialized.
2) Only inline code changes can be made.

Sign in to comment.

Categories

Find more on Programming in Help Center and File Exchange

Products

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!