📄 super.m
字号:
function theSuperObject = super(theObject)% super -- Super-object of an object.% super(theObject) returns the super-object% of theObject, or [] if none exists. The% super-object is the bottom-most object% in the struct of theObject, if any.% Copyright (C) 1996 Dr. Charles R. Denham, ZYDECO.% All Rights Reserved.% Disclosure without written consent from the% copyright owner does not constitute publication. % Version of 04-Apr-1997 16:51:36.% Revised 02-Nov-1998 08:26:00.if nargin < 1, help super, return, endif isobject(theObject) theStruct = struct(theObject); else theStruct = theObject;ends = [];f = fieldnames(theStruct);if ~isempty(f) s = getfield(theStruct, f{length(f)}); if ~isobject(s), s = []; endendif nargout > 0 theSuperObject = s; else disp(s)end
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -