我应该在MATLAB中的属性名称后面加一个分号吗?

时间:2015-12-03 09:27:56

标签: matlab oop formatting

面向对象的MATLAB中推荐的格式是什么:在属性名称之后加一个分号?

classdef SemicolonVersion
   properties
      prop1;
   end
end

OR

classdef NoSemicolonVersion
   properties
      prop1
   end
end

1 个答案:

答案 0 :(得分:2)

您可以使用其中之一。 MATLAB文档使用两者,因此实际上没有接受的方法。使用你想要的任何东西。

http://mathworks.com/help/matlab/matlab_oop/specifying-attributes.html