15 Reputation Points
Ranked #2K
- Strength to Increase Rep
- +1
- Strength to Decrease Rep
- -0
100% Quality Score
- Upvotes Received
- 1
- Posts with Upvotes
- 1
- Upvoting Members
- 1
- Downvotes Received
- 0
- Posts with Downvotes
- 0
- Downvoting Members
- 0
0 Endorsements
Ranked #72.7K
~915 People Reached
About Me
"Cuando el entendimiento se enturbia, la fe es el filtro que potabiliza nuestra mente."
Favorite Forums
Favorite Tags
java x 2
Re: import java.lang.reflect.Array; public class TestReflectionToStringArray { // simple method private static final void toStringReflectionArray(Object array, int index, StringBuilder sb) { int length = array.getClass().isArray() ? Array.getLength(array) : -1; sb.append(length == 0 ? "{}" : ""); if (length > 0) { Object child = null; sb.append(index == 0 ? "{" : … |