Skip to content

Instantly share code, notes, and snippets.

@aiya000
Created July 27, 2020 05:18
Show Gist options
  • Save aiya000/dff30c53815a3858181fa7a788ac237b to your computer and use it in GitHub Desktop.
Save aiya000/dff30c53815a3858181fa7a788ac237b to your computer and use it in GitHub Desktop.
public class Test {
public static void main(String[] args) {
float[] xs = new float[32];
xs[5] = 10.0f;
for (float x : xs) {
System.out.println(x);
}
}
}
// [output]
// 0.0
// 0.0
// 0.0
// 0.0
// 0.0
// 10.0
// 0.0
// 0.0
// 0.0
// 0.0
// 0.0
// 0.0
// 0.0
// 0.0
// 0.0
// 0.0
// 0.0
// 0.0
// 0.0
// 0.0
// 0.0
// 0.0
// 0.0
// 0.0
// 0.0
// 0.0
// 0.0
// 0.0
// 0.0
// 0.0
// 0.0
// 0.0
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment