首页 > 其他 > 详细

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

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

新建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面向对象编程实例

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

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!