Difficulty foor running a class

1 Ansicht (letzte 30 Tage)
elias BITAR
elias BITAR am 23 Sep. 2018
Kommentiert: Walter Roberson am 30 Sep. 2018
I copied an example as showed in Matlab examples presentation but I get the following message classdef BasicClass ↑ Error: Illegal use of reserved keyword "classdef". Please can you help to run a class example Regards
  2 Kommentare
Stephan
Stephan am 23 Sep. 2018
Please provide the code you have tried so far.
Walter Roberson
Walter Roberson am 23 Sep. 2018
I speculate that you did not store the classdef in a separate file named after the class to be created.

Melden Sie sich an, um zu kommentieren.

Antworten (3)

Arun Mathamkode
Arun Mathamkode am 27 Sep. 2018
As Walter Roberson pointed out, please make sure that you store the classdef in a separate file with the same name as the class name. Also please make sure that you didn't miss any end statements while copying the sample code.

elias BITAR
elias BITAR am 27 Sep. 2018
Bearbeitet: Walter Roberson am 27 Sep. 2018
Many thanks for yor answer I stored the classdef in a separate file with the same name ( I make a copy of an example )
classdef (Sealed) MyClass < handle
properties (Access = private)
Prop1 = datenum(date)
end
properties
Prop2
end
methods
function obj = MyClass(x)
obj.Prop2 = x;
end
end
methods (Access = {?MyOtherClass})
function d = myMethod(obj)
d = obj.Prop1 + x;
end
end
events (ListenAccess = protected)
StateChanged
end
end
and here is the comment
classdef (Sealed) MyClass < handle
Error: Illegal use of reserved keyword "classdef".
Best reagards E BITAR
  1 Kommentar
Walter Roberson
Walter Roberson am 27 Sep. 2018
When I store the noted code in MyClass.m then I do not encounter any error in R2018a or R2018b.
Could you attach a copy of the MyClass.m that you are having difficulty with? Not paste but attach: I want to check it for special characters.

Melden Sie sich an, um zu kommentieren.


elias BITAR
elias BITAR am 30 Sep. 2018
You find enclosed file Regards
  1 Kommentar
Walter Roberson
Walter Roberson am 30 Sep. 2018
This new version is not < handle and leads to the editor error that events can only be defined for handle classes.

Melden Sie sich an, um zu kommentieren.

Produkte


Version

R2018a

Community Treasure Hunt

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

Start Hunting!

Translated by