stack class : stack(string) fitter

Description

Gets an instance initialized by the initialization string.

Syntax

new stack(string initStr)

Arguments

ClassNameDescription
stringinitStrInitialization string.

Return value

ClassDescription
stackInitialized stack.

Sample code

1:

/**Sample**concat**-----------------------

2:

{123, 123L, 123.4, true, "string",}

3:

-----------------------------------------------*/

4:

rice rr;

5:

stack newStack = new stack(rr.Sample);

Notes

The format of the initialization string is:

A string that starts with "{" and ends with "}".

Separate the items with commas.

Allows a comma to follow the last item.

Allows white space before and after the initialization string and item.


The int, long, real, bool, and string can be set as items. Specify in the format of each literal.

Links for reference

None.

Copyright © Rice All rights reserved.