MATLAB で次のおもちゃのクラスを作成するとします。
classdef testIt
properties
a
b
c
end
methods
function obj = testIt
obj.a = 1;
obj.b = 2;
end
function obj = set.a(obj,a)
obj.a = a;
end
function obj = set.b(obj,b)
obj.b = b;
end
function obj = addup(obj)
obj.c = obj.a + obj.b;
end
end
end
addup
次に、メソッドをインスタンス化して呼び出します。
>> aTest = testIt
Properties:
a: 1
b: 2
c: []
>> aTest.addup
Properties:
a: 1
b: 2
c: 3
>> aTest
Properties:
a: 1
b: 2
c: []
プロパティc
は作成されていません。代わりに、次の構文を使用する必要があります。
>> aTest = aTest.addup
>> aTest
Properties:
a: 1
b: 2
c: 3
なぜこれが必要なのか誰にも説明できますか?