System.StringRefCount

提供: RAD Studio API Documentation
移動先: 案内検索

Delphi

function StringRefCount(const S: UnicodeString): Integer;
function StringRefCount(const S: _RawByteStr): Integer;

C++

extern DELPHI_PACKAGE int __fastcall StringRefCount(const UnicodeString S)/* overload */;

プロパティ

種類 可視性 ソース ユニット
function public
System.pas
System.hpp
System System

説明

文字列の参照カウントを返します。

StringRefCount を呼び出すと、文字列の参照カウントを取得できます。各文字列には、関連付けられた参照カウントがあります。この値は、文字列への参照の数を検出するために使用されます。

文字列の参照カウントが 1 になるようにするには、UniqueString を呼び出します。

関連項目