What is the better way to work with private field and private methods?
Is it graceful to use private field inside private methods or it's better to put them as parameters,when call private method from public method?
field:
private Item model;
1. public method:
...
if (model.getPrice() != null) {
String formattedPrice = formatPrice();
}
...
private method:
private int formatPrice(){
int price = model.getPrice() + 10;
}
VS
2. public method:
if (model.getPrice() != null) {
String formattedPrice = formatPrice(model.getPrice());
}
...
private method:
formatPrice(int price){
int price = price + 10;
}
modifyPrice()method should be used only in this class (which seems to be so because of theprivatevisibility), I prefer the first answer. – sp00m Apr 24 '12 at 13:00