- In event how did you call the function set.NumEvent ? I dont think there should be a dot
- In listener, it is throwing me an error of missing comma before num2str in display function
Listener doesnt display messages after changes through workspace
1 次查看(过去 30 天)
显示 更早的评论
Hello, I tried to practice with event and listener objects.
As I practiced, I made two classes, one with an event and one with a listener function upon the event.
I noticed that the listener doesnt display messages if the event is trigerred through the workspace.
The event code:
classdef EventPractice < handle
properties (SetObservable = true)
NumEvent = 1
end
events
NumChangedEvent
end
methods
function set.NumEvent(obj,value)
obj.NumEvent = value;
notify(obj,'NumChangedEvent');
end
end
end
The listener code:
classdef ListenerPractice < handle
properties
NumListener = 1
end
methods
function obj = ListenerPractice(EventSrc)
addlistener(EventSrc,'NumChangedEvent',@obj.ListenerReaction);
end
end
methods
function ListenerReaction(obj,EventSrc,~)
obj.NumListener = EventSrc.NumEvent
disp(['The event Num has changed. The listener Num changes to the same num: 'num2str(EventSrc.NumEvent)])
end
end
end
Creation Code:
EventExample = EventPractice;
ListenerExample = ListenerPractice(EventExample);
Change at the Workspace:
Change reaction at the ListenerExample variable:
Empty Command Window:
After this whole process, If the NumListener variable changed at the listener function 'ListenerReaction', why didnt the disp() function also go into action?
Thank you for reading,
Yuval Blutman.
4 个评论
Voss
2022-12-13
@Yuval Blutman: Please share the actual code you are running; as @Nikhil pointed out, there are syntax errors in the code posted here:
1:
function set.NumEvent(obj,value)
% ^ period is not allowed in a function name
2:
disp(['The event Num has changed. The listener Num changes to the same num: 'num2str(EventSrc.NumEvent)])
% ^^ missing comma or space before num2str
回答(1 个)
Nikhil
2022-12-19
Hi Yuval,
As I have mentioned earlier , your NumChangedEvent is triggered only when the setNumEvent function is called ( which is the case when you call the function ).
When you change the value throught workspace, no event is triggered and hence no display.
Even if you try something like objName.NumEvent = 10 from command line, the display function won't work as no event is triggered.
It is triggered only if you do objName.setNumEvent(10) ( literally call the function).
The only thing I am not able to figure out is, when I change value from workspace , the value is changed only in event and not listener.
Hope this helps.
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Construct and Work with Object Arrays 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!