Вниз
Скачать: CL | DM;

Наследование от базового класса.   Найти похожие ветки 

 
pathfinder ©   (2007-05-29 16:46) [0]

Здравствуйте.
Подскажите, пожалуйста, для чего при создании класса, наследуемого от TObject в конструкторе и деструкторе пишут inherited Create, inherited Destroy?


 
Jeer ©   (2007-05-29 16:48) [1]

чтобы эти самые inherited выполнились, если нужны конечно.


 
oxffff ©   (2007-05-29 16:48) [2]

The reserved word inherited plays a special role in implementing polymorphic behavior. It can occur in method definitions, with or without an identifier after it.

If inherited is followed by the name of a member, it represents a normal method call or reference to a property or field--except that the search for the referenced member begins with the immediate ancestor of the enclosing method"s class. For example, when

inherited Create(...);

occurs in the definition of a method, it calls the inherited Create.

When inherited has no identifier after it, it refers to the inherited method with the same name as the enclosing method or, if the enclosing method is a message handler, to the inherited message handler for the same message. In this case, inherited takes no explicit parameters, but passes to the inherited method the same parameters with which the enclosing method was called. For example,

inherited;

occurs frequently in the implementation of constructors. It calls the inherited constructor with the same parameters that were passed to the descendant.


 
pathfinder ©   (2007-05-29 16:49) [3]


> чтобы эти самые inherited выполнились, если нужны конечно.
>
>


Так ведь в классе TObject методы Create и Destroy пустые..


 
MBo ©   (2007-05-29 16:49) [4]

inherited Destroy- чтобы вызывался унаследованный деструктор
inherited Create - унаследованный конструктор. Для прямых наследников TObject родительский конструктор вызывать не обязательно, т.к. он ничего не делает


 
Однокамушкин   (2007-05-29 16:51) [5]


> pathfinder ©   (29.05.07 16:49) [3]
> Так ведь в классе TObject методы Create и Destroy пустые.

А в следующей версии Delphi вдруг будут не пустые... и ваш код станет некорректно работать...


 
oxffff ©   (2007-05-29 16:51) [6]


> pathfinder ©   (29.05.07 16:49) [3]
>
> > чтобы эти самые inherited выполнились, если нужны конечно.
>
> >
> >
>
>
> Так ведь в классе TObject методы Create и Destroy пустые.
> .


Можешь не писать, если от Tobject наследуешь


 
oxffff ©   (2007-05-29 16:52) [7]


>
> > pathfinder ©   (29.05.07 16:49) [3]
> > Так ведь в классе TObject методы Create и Destroy пустые.
>
>
> А в следующей версии Delphi вдруг будут не пустые... и ваш
> код станет некорректно работать...


Скорее NewInstance будут править. :)



Страницы: 1 вся ветка

Скачать: CL | DM;



Память: 0.46 MB
Время: 0.013 c
1-1176805616
badevlad
2007-04-17 14:26
2007.06.17
Есть ли предел у оптимизации?


3-1175082815
Thely
2007-03-28 15:53
2007.06.17
IB и ADO?


2-1179154246
Lordalex
2007-05-14 18:50
2007.06.17
помогите с ошибкой


1-1177061372
Лысеющий Самурай
2007-04-20 13:29
2007.06.17
Как получить выделенный текст


2-1179905554
Алексин
2007-05-23 11:32
2007.06.17
проблемы с реализацией




   Наверх