Logo

Programming-Idioms

History of Idiom 117 > diff from v3 to v4

Edit summary for version 4 by :
New Java implementation by user [programming-idioms.org]

Version 3

2016-01-13, 14:02:28

Version 4

2016-01-13, 14:03:18

Idiom #117 Get list size

Set n to the number of elements of list x.

Idiom #117 Get list size

Set n to the number of elements of list x.

Code
int n = x.length;
Comments bubble
x is an array.
Demo URL
http://ideone.com/ZJKv7k