Skip to content

Commit b920405

Browse files
author
Colin Robertson
committed
Fix date
1 parent bae7a5d commit b920405

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

docs/cpp/this-pointer.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
11
---
2-
title: "this Pointer"
3-
ms.date: "11/04/2016"
2+
title: "this pointer"
3+
description: "The this pointer is a compiler-generated pointer to the current object in nonstatic member functions."
4+
ms.date: "01/22/2020"
45
f1_keywords: ["this_cpp"]
56
helpviewer_keywords: ["nonstatic member functions [C++]", "pointers, to class instance", "this pointer"]
67
ms.assetid: 92e3256a-4ad9-4d46-8be1-d77fad90791f
78
no-loc: [this, class, struct, union, sizeof, const, volatile]
89
---
9-
# this Pointer
10+
# this pointer
1011

1112
The **this** pointer is a pointer accessible only within the nonstatic member functions of a **class**, **struct**, or **union** type. It points to the object for which the member function is called. Static member functions don't have a **this** pointer.
1213

0 commit comments

Comments
 (0)