Skip to content

EXTENDS WSTRING


Specifies a type which inherits a Wstring behavior

Syntax

vb
Type|Union typename Extends Wstring [, base_typename]

...

End Type|Union

Description

Extends Wstring declares typename to inherit properties and behaviors of a Wstring. Purpose is to allow users to create custom string types (with i.e. dynamic memory management) that can integrate well in to existing fbc compiler built ins (good interoperability with fbc's Wstring type).

This declaration of such a UDT with a suitable Cast operator will instruct compiler to convert the UDT to a Wstring (in addition, other suitable operators as Let, [] (Pointer index), Len, ..., can be also declared).

Wstring behaviour can be inherited directly, or indirectly and singly from a base-type.

Wstring behaviour can be inherited by a UDT also extending base_typename (a kind of pseudo multiple-inheritance).

By declaring a type (directly or indirectly) as Extends Wstring (in addition to defining a suitable Cast operator only), this promotes it fully Wstring type compatible, even with Strptr/Sadd, Lset/Rset, and Select Case.

Examples

See Extends Zstring for similar examples.

Version

  • Before fbc 1.09.0, this promotion was not yet fully Wstring type compatible with the built in functions Val/Valint/Vallng/Valuint/Valunlg and Left/Right.
  • Since fbc 1.07.0

Dialect Differences

  • Not available in the -lang qb dialect unless referenced with the alias __Extends __Wstring, but unusable because no member procedure is allowed in this dialect.

Differences from QB

  • New to FreeBASIC

See also

  • Type
  • Union
  • Extends
  • Wstring
  • Extends Zstring

Back to DocToc

Translated from FreeBASIC official docs. Contact us for removal if infringed.
FreeBASIC is an open-source project, not affiliated with Microsoft