| new | R Documentation |
Creates a new Java object and invokes the constructor with given arguments.
The new method is used as the high-level API to create new
Java objects (for low-level access see .jnew). It
returns the newly created Java object.
... arguments are passed to the constructor of the class
specified as J("class.name").
newsignature(Class = "jclassName"): ...
.jnew, jclassName-class
## Not run:
v <- new(J("java.lang.String"), "Hello World!")
v$length()
v$indexOf("World")
names(v)
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.