Effacer les filtres
Effacer les filtres

I'm getting >> Reference to non-existent field 'speak'. error. Please help.

1 vue (au cours des 30 derniers jours)
Ishan Gawai
Ishan Gawai le 8 Mar 2021
Commenté : Ishan Gawai le 9 Mar 2021
Hi, I'm a beginner in matlab and using OO programming for first time. Whenever I call function speak from class I get reference to non-existent field 'speak ' error.
classdef dog
properties
name
breed
colour
end
methods
function speak(obj)
disp(obj.name + "says Hi!!!")
end
end
end

Réponse acceptée

Cris LaPierre
Cris LaPierre le 8 Mar 2021
Your code is fine. Make sure you create an instance of the class, then use that when calling your method. See here.
c=dog;
c.name = "Ruby";
speak(c)
Rubysays Hi!!!
c.speak
Rubysays Hi!!!

Plus de réponses (0)

Catégories

En savoir plus sur Software Development Tools 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!

Translated by