CA2AEX Class

 

The new home for Visual Studio documentation is Visual Studio 2017 Documentation on docs.microsoft.com.

The latest version of this topic can be found at CA2AEX Class.

This class is used by the string conversion macros CA2TEX and CT2AEX, and the typedef CA2A.

Important

This class and its members cannot be used in applications that execute in the Windows Runtime.

Syntax

template <int t_nBufferLength = 128>
class CA2AEX

Parameters

t_nBufferLength
The size of the buffer used in the translation process. The default length is 128 bytes.

Members

Public Constructors

Name Description
CA2AEX::CA2AEX The constructor.
CA2AEX::~CA2AEX The destructor.

Public Operators

Name Description
CA2AEX::operator LPSTR Conversion operator.

Public Data Members

Name Description
CA2AEX::m_psz The data member that stores the source string.
CA2AEX::m_szBuffer The static buffer, used to store the converted string.

Remarks

Unless extra functionality is required, use CA2TEX, CT2AEX, or CA2A in your own code.

This class contains a fixed-size static buffer which is used to store the result of the conversion. If the result is too large to fit into the static buffer, the class allocates memory using malloc, freeing the memory when the object goes out of scope. This ensures that, unlike text conversion macros available in previous versions of ATL, this class is safe to use in loops and that it won't overflow the stack.

If the class tries to allocate memory on the heap and fails, it will call AtlThrow with an argument of E_OUTOFMEMORY.

By default, the ATL conversion classes and macros use the current thread's ANSI code page for the conversion.

The following macros are based on this class:

  • CA2TEX

  • CT2AEX

The following typedef is based on this class:

  • CA2A

For a discussion of these text conversion macros, see ATL and MFC String Conversion Macros.

Example

See ATL and MFC String Conversion Macros for an example of using these string conversion macros.

Requirements

Header: atlconv.h

CA2AEX::CA2AEX

The constructor.

CA2AEX(LPCSTR psz, UINT nCodePage) throw(...);
CA2AEX(LPCSTR psz) throw(...);

Parameters

psz
The text string to be converted.

nCodePage
Unused in this class.

Remarks

Creates the buffer required for the translation.

CA2AEX::~CA2AEX

The destructor.

~CA2AEX() throw();

Remarks

Frees the allocated buffer.

CA2AEX::m_psz

The data member that stores the source string.

LPSTR m_psz;

CA2AEX::m_szBuffer

The static buffer, used to store the converted string.

char m_szBuffer[ t_nBufferLength];

CA2AEX::operator LPSTR

Conversion operator.

operator LPSTR() const throw();

Return Value

Returns the text string as type LPSTR.

See Also

CA2CAEX Class
CA2WEX Class
CW2AEX Class
CW2CWEX Class
CW2WEX Class
Class Overview