Skip to content

Latest commit

 

History

History
38 lines (26 loc) · 762 Bytes

File metadata and controls

38 lines (26 loc) · 762 Bytes
description Learn more about: is_final Class
title is_final Class
ms.date 11/04/2016
f1_keywords
type_traits/std::is_final
helpviewer_keywords
is_final
ms.assetid 9dbad82f-6685-4909-94e8-98e4a93994b9

is_final Class

Tests whether the type is a class type marked final.

Syntax

template <class T>
struct is_final;

Parameters

T
The type to query.

Remarks

An instance of the type predicate holds true if the type T is a class type marked final, otherwise it holds false. If T is a class type, it must be a complete type.

Requirements

Header: <type_traits>

Namespace: std

See also

<type_traits>
final Specifier