码迷,mamicode.com
首页 > 其他好文 > 详细

一个简单的Matlab面向对象编程实例

时间:2014-05-18 08:06:08      阅读:288      评论:0      收藏:0      [点我收藏+]

标签:blog   class   code   c   a   2014   

新建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!


为什么要用面向对象?

对于复杂的数据结构和交互,封装为不同的类,便于理解系统,从而,可以为构建复杂系统提供好的基础。

一个简单的Matlab面向对象编程实例,布布扣,bubuko.com

一个简单的Matlab面向对象编程实例

标签:blog   class   code   c   a   2014   

原文地址:http://blog.csdn.net/miscclp/article/details/26090137

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!