0 wolfcode 9 Years Ago Hi, I have to write a simple Java code real quick and was wondering how to write the following macro in Java: #define BUF 256 java
0 Ezzaral 2,714 9 Years Ago There are no macros in Java. You would define a class or interface constant for that purpose.
0 rernst 8 Years Ago You probably would do something like: public final static int buf = 256; It's not exactly the same thing but performing about as good as it gets. It's comparable to a const.
0 alwinnjavaroor 7 Years Ago hi 'rernst' recently a friend of mine asked me to convert a c++ coded pgm to java codes and there was macro [ #define f(x) x*x*x ] how do get java equivalent code for this? using a function call is undesirable for this pgm ....can u help on this Edited 7 Years Ago by alwinnjavaroor: n/a