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
There are no macros in Java. You would define a class or interface constant for that purpose.
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.
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
We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.