Visual C++ .NET/Class/sealed — различия между версиями
Admin (обсуждение | вклад) м (1 версия) |
Admin (обсуждение | вклад) м (1 версия) |
(нет различий)
| |
Текущая версия на 12:05, 26 мая 2010
sealed class
#include "stdafx.h"
ref class C sealed
{
};
//ref class B : C // Error: cannot inherit from a sealed class.
//{
//};