Effacer les filtres
Effacer les filtres

Is there a classdef startup/initializer method?

2 vues (au cours des 30 derniers jours)
James Tursa
James Tursa le 19 Sep 2023
Modifié(e) : James Tursa le 20 Sep 2023
When a classdef is first loaded into memory (via object instance creation or static method call etc.), is there a way to get a startup/initializer method to automatically be called once? E.g., to do preliminary calculations needed to support the classdef functionality?

Réponse acceptée

Matt J
Matt J le 20 Sep 2023
Modifié(e) : Matt J le 20 Sep 2023
As one example, you can initialize a property with a class-related function like below. Various other options are discussed here and here.
classdef myclass
properties (Constant)
startupData=init()
end
end
function data=init() %class-related function
%Do initial stuff here.
end
  1 commentaire
James Tursa
James Tursa le 20 Sep 2023
Modifié(e) : James Tursa le 20 Sep 2023
I think this will work for me. Thanks!
(Although in my application, init( ) is a myclass static method so it must be called myclass.init)

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Startup and Shutdown dans Help Center et File Exchange

Produits


Version

R2023a

Community Treasure Hunt

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

Start Hunting!

Translated by