I have a line of code that works like this,
mrq.setId((mrq.getId()+1));
But, When I tried to write it like this,
mrq.setId((mrq.getId()++));
It doesn't work, The error is, Invalid argument ot the operation ++/--
What is the technical reason behind it?