Вниз
Скачать: 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
2-1180339504
Vin
2007-05-28 12:05
2007.06.17
Результаты вычисляемых полей из Table выгрузить в .dbf файл


2-1180049862
delphino
2007-05-25 03:37
2007.06.17
DISTINCT


2-1179843761
Rafik
2007-05-22 18:22
2007.06.17
Подскажите пожалуста как мне в чужом приложении


6-1164640713
Diamond
2006-11-27 18:18
2007.06.17
Socket.ReceiveBuf ломается с ИС


2-1180013510
Serega_61
2007-05-24 17:31
2007.06.17
Вложенные формы




   Наверх