필터 지우기
필터 지우기

Is constructor method the only method that creates an object in a class definition?

조회 수: 2 (최근 30일)
Another way to ask this question is: how do I create a value class object as the output of a handle class ordinary method? For example,
classdef handleClassA < handle
properties
end
methods
function obj = handleClassA(varargin)
...
end
function ValueClassobj2 = unknownmethod(handleClassAobj, ValueClassobj1)
ValueClassobj2.property1 = ...
some_sort_function(handleClassAobj.property3, ValueClassobj1.property1);
...
end
end
end
If I do it the above way, the output is a struct with field property1, etc., not a object of a class.
  댓글 수: 6
Steven Lord
Steven Lord 2017년 12월 11일
digraph is the constructor for the digraph class included in MATLAB since release R2015b.
In this simple example createDigraph only calls the constructor for the digraph class with a sample matrix returned from the bucky function (also included in MATLAB.)
In a "real world" scenario the myHandleClass object would probably have properties that the createDigraph method would use to compute the matrix with which you call the digraph constructor.

댓글을 달려면 로그인하십시오.

채택된 답변

Matt J
Matt J 2017년 12월 11일
편집: Matt J 2017년 12월 11일
I think you are trying to do,
function ValueClassobj2 = unknownmethod(handleClassAobj, ValueClassobj1)
ValueClassobj2 = ValueClassobj1; %clone of obj1
ValueClassobj2.property1 = ...
some_sort_function(handleClassAobj.property3, ValueClassobj1.property1);
...
end
  댓글 수: 1
Yves
Yves 2017년 12월 11일
편집: Matt J 2017년 12월 11일
Matt, if I understand you correctly, the statement
ValueClassobj2 = ValueClassobj1;
creates the object "ValueClassobj2", in the same class as "ValueClassobj1". Correct?
What if I don't have a same class object as "ValueClassobj2" that I wanted to create, but an array of input variables? Will I still be able to define "unknownmethod" as a method of currect class "handleClassAobj", to create the object "ValueClassobj2"?

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Construct and Work with Object Arrays에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by