Pass existing object to different class objects
4 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Hi I have a object oriented programm so simulate different appliances.
I have a class object where the general settings of my programm are stored, so I don't have to save a lot of datas to every objec
If I store the object of my settings in the other object, do I generate everytime a "new" settingsobject and use a lot of space or will it be just a "pointer" to my existing object?
classdef appliance
properties
gens
% ...
end
methods
function obj = timeClass(gens)
%UNTITLED Construct an instance of this class
obj.gens = gens
end
% ...
end
end
gens = generalClassObject
appli = appliance(gens)
0 commentaires
Réponse acceptée
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Properties dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!