yaminote's blog

By yaminote, history, 2 years ago, In English

I have using Chelper plugin for CP for quite a while. I am encountering problems with it now. When I declare an array as a global variable in my code then in Main.java int ar[] appears as int ar. How to fix this issue.

  • Vote: I like it
  • 0
  • Vote: I do not like it

| Write comment?
»
2 years ago, # |
  Vote: I like it 0 Vote: I do not like it

Declare it as int[] ar. int ar[] syntax is there for backward compatibility