Skip to main content

You are not logged in. Your edit will be placed in a queue until it is peer reviewed.

We welcome edits that make the post easier to understand and more valuable for readers. Because community members review edits, please try to make the post substantially better than how you found it, for example, by fixing grammar or adding additional resources and hyperlinks.

2
  • What is the ad hoc array in your first example.It doesn't compile for me Commented Feb 28, 2012 at 8:26
  • @Jim MyType here is just any type that you want to create an array from. And three dots, just before the closing curly brace, are there just to show, that you may add as many MyType instances as you want. Try this for example: Object[] objArr = new Object[]{new Object(), new Object()}; Commented Feb 28, 2012 at 9:15