1. 程式人生 > >一個簡單的Matlab面向物件程式設計例項

一個簡單的Matlab面向物件程式設計例項

新建Dog.m

內容:

classdef Dog
    properties % these are the variables
        name;
        age
        msg;
    end
    methods % these are the functions
        function obj = Dog() % constructor
        end
        function obj = setInfo(obj, name, age)
            obj.name = name;
            obj.age = age;
        end
        function rst = bark(obj, times)
            rst = '';
            for i = 1:times
                rst = ['Hello, dog ', obj.name, '! ', rst];
            end
        end
    end
end

這樣,定義了一個Dog類

測試程式碼:

 d = Dog
d.setInfo('martin', 15)
info = d.bark()
Ok!

為什麼要用面向物件?

對於複雜的資料結構和互動,封裝為不同的類,便於理解系統,從而,可以為構建複雜系統提供好的基礎。