What you've defined isn't actually a constructor, but a method called Const. If you changed your code to something like this, it would work:
Const c = new Const();
System.out.println( c.Const( "Hello!" ) );
If no specific constructor is explicitly defined, the compiler automatically creates a no-argument constructor.