Info
Cette question est clôturée. Rouvrir pour modifier ou répondre.
Fully connected objects
    2 vues (au cours des 30 derniers jours)
  
       Afficher commentaires plus anciens
    
Hey guys,
I have 5 objects that I need to connect all of them together so I can manipulate some data.I need something similar to linked list but for all objects to be able to access every other object.For example, am in object 1 and I wanted depending on a certain paramter to access object 2 or object 3 and then come back to 1.How can I do that in matlab if possible.
Have a good day.
1 commentaire
  Walter Roberson
      
      
 le 16 Fév 2011
				You will need to clarify the difference between being "in" object 1, and "accessing" object 2.
Réponses (1)
  Roberto
      
 le 26 Avr 2014
        I don't know if I got it, maybe you need to clarify; acceding objects from different functions can be achieved with different methods, nested functions in one of them. see this code:
function mainFunction(condition)
  objCus1 = myClass ;
  objCus2 = myClass ;
  objCus3 = otherClass ;
  switch condition
      case 1
          objCus3.prop1 = myFunc1 ;
      case 2
          objCus1.prop4 = myFunc2 ;
  end
    function myFunc1
        objCus1.method1
        if objCus2.prop1 == objCus3
            objCus1.method2
        end
    end
    function myFunc2
        externalFunc(objCus1,objCus2,objCus3.someProperty);
        return
    end
end
0 commentaires
Cette question est clôturée.
Voir également
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!


