as.character.Object: Gets a character string representing the object

as.character.ObjectR Documentation

Gets a character string representing the object

Description

Gets a character string representing the object. In the class Object, this method simply returns the class name and the hashCode() value of the object.

Usage

## S3 method for class 'Object'
as.character(x, ...)

Arguments

...

Not used.

Value

Returns a character string representation of the Object. By default it is "{class name}: {hash code}".

Author(s)

Henrik Bengtsson

See Also

For more information see Object.

Examples

  obj <- Object()
  as.character(obj)    # "Object: 0x000000000ab6a7a8"

HenrikBengtsson/R.oo documentation built on Jan. 31, 2024, 9:06 a.m.