Protected constructor vs abstract class

7 vues (au cours des 30 derniers jours)
behzad abdollahikhameneh
behzad abdollahikhameneh le 16 Mar 2018
Modifié(e) : per isakson le 17 Mar 2018
Is there a difference between
1. Define constructor as Protected.
2. Define a class "Abstract" to avoid direct instantiation (only subclasses can be instantiated)
Example:
classdef (Abstract) TestInterface < handle
properties
test;
end
methods (Abstract)
testMethod(pObj);
testMethod2(pObj);
end
end
classdef TestImpl < TestInterface %%%%%%%%%%%%%VARIATION 1
methods
function testMethod(pObj)
end
end
methods(Access = 'protected')
function rObj = TestImpl()
rObj.test = 1;
end
end
end
classdef (Abstract) TestImpl < TestInterface %%%%%%%%%%%%VARIATION 2
methods
function rObj = TestImpl()
rObj.test = 1;
end
function testMethod(pObj)
end
end
end
classdef TestImpl2 < TestImpl
methods
function rObj = TestImpl2()
rObj = rObj@TestImpl();
end
function testMethod(pObj)
end
function testMethod2(pObj)
end
end
end
  1 commentaire
per isakson
per isakson le 17 Mar 2018
Modifié(e) : per isakson le 17 Mar 2018
  • "Define constructor as Protected [or private]." doesn't make the class abstract. Combined with static methods it may be used to implement the Singleton Pattern.

Connectez-vous pour commenter.

Réponses (0)

Catégories

En savoir plus sur C++ Data and Function Interfaces 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