How to get the name of the calling class in a static method?
49 次查看(过去 30 天)
显示 更早的评论
Hi,
is there a way so that a static method can get the name of the class that is calling it?
In a non-static method, one always has the option of running class(obj) obj being the object on whihc the method is being applied. But how to do it for a static method?
0 个评论
采纳的回答
Guillaume
2014-10-6
mfilename('class')
However, since inheritance doesn't really have any effect on static methods, you could just hardcode it in the method.
5 个评论
Guillaume
2014-10-7
Well, the simplest thing to do what you want is to take the showinfo method out of the class definition and implement it as a free function, on its own:
function showinfo(classname)
if ismember('baseclassname', superclasses(classname))
info = eval(sprintf('%s.extractinfo')); %dispatch to static method
%common code for showinfo
else
error('showinfo only applies to classes derived from baseclassname');
end
end
The calling syntax does not differ much anyway:
%using hypotetical derived static method that would know where it's called from:
derivedclassname.showinfo;
%using free function:
showinfo('derivedclassname');
更多回答(1 个)
Captain Karnage
2023-5-16
Another option is you can pass an empty version of the subclass enumeration to the superclass method. This would mean you have to create a version of the function in each subclass, which I know is a bit of a pain, but it ends up being a very simple, one line function in the subclass. Below is a very simple example, but this works really well if the static function you want to use in the superclass it is in rather complicated as you can use a simple pass through to call it from the subclass.
classdef mySuperClass
methods(static)
function name = getName ( subObj )
arguments
subObj mySuperClass
end
name = class(subObj);
%Note: you can call any other static functions or properties using myEnum.staticname
end
end
end
classdef mySubClassA
methods(static)
function name = getName()
name = getName@mySuperClass( mySubClassA.empty );
end
end
end
classdef mySubClassB
methods(static)
function name = getName()
name = getName@mySuperClass( mySubClassB.empty );
end
end
end
now mySubClassA.getName will return "mySubClassA" and likewise for mySubClassB
If you do similar with other static functions - by passing an empty class in to subObj, you can call the getName function using subObj.getName.
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Subclass Definition 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!