Skip to content

Latest commit

 

History

History
75 lines (65 loc) · 1.36 KB

File metadata and controls

75 lines (65 loc) · 1.36 KB
title __func__ | Microsoft Docs
ms.custom
ms.date 11/04/2016
ms.reviewer
ms.suite
ms.technology
cpp-language
ms.tgt_pltfrm
ms.topic language-reference
f1_keywords
__func__
__func___cpp
dev_langs
C++
ms.assetid a5299b8d-f0ee-4af2-91dd-8fb165e68798
caps.latest.revision 3
author mikeblome
ms.author mblome
manager ghogen
translation.priority.ht
cs-cz
de-de
es-es
fr-fr
it-it
ja-jp
ko-kr
pl-pl
pt-br
ru-ru
tr-tr
zh-cn
zh-tw

func

(C++11) The predefined identifier __func__ is implicitly defined as a string that contains the unqualified and unadorned name of the enclosing function. __func__ is mandated by the C++ standard and is not a Microsoft extension.

Syntax

__func__  

Return Value

Returns a null-terminated const char array of characters that constains the function name.

Example

  
#include <string>  
#include <iostream>  
  
namespace Test  
{  
    struct Foo  
    {  
        static void DoSomething(int i, std::string s)  
        {  
           std::cout << __func__ << std::endl; // Output: DoSomething  
        }  
    };  
}  
int main()  
{  
    Test::Foo::DoSomething(42, "Hello");  
  
    return 0;  
}  
  

Requirements

C++11