LINUX.ORG.RU

Допускаете ли вы такой стиль кода?

 ,


0

1

Что лучше и правильнее?

public void foo   (Double a)            {fn(0, 0, a,  "foo");   }
public void foo   (Double a, Integer b) {fn(0, b, a,  "foo");   }
public void bar   (Double a)            {fn(a, 0, 0d, "bar");   }
public void bar   (Double a, Integer b) {fn(a, b, 0d, "bar");   }
public void foobar(Double a, Integer b) {fn(a, b, a,  "foobar");}

или

public void foo(Double a) 
{
    fn(0, 0, a, "foo");  
}
public void foo(Double a, Integer b) 
{
    fn(0, b, a,  "foo");
}
public void bar(Double a) 
{
    fn(a, 0, 0d, "bar");
}
public void bar(Double a, Integer b) 
{
    fn(a, b, 0d, "bar");   
}
public void foobar(Double a, Integer b) 
{
    fn(a, b, a,  "foobar");
}

★★★★★

Последнее исправление: crutch_master (всего исправлений: 3)
Ответ на: комментарий от anonymous

Есть только !ОДНО! правило

К языкам с public void в начале строки неприменимо — не писать же так:

                                                          public void 
foo    (Double a){             fn(0, 0, a,  "foo"     );} public void 
foo    (Double a, Integer b){  fn(0, b, a,  "foo"     );} public void 
bar    (Double a){             fn(a, 0, 0d, "bar"     );} public void 
bar    (Double a, Integer b){  fn(a, b, 0d, "bar"     );} public void 
foobar (Double a, Integer b){  fn(a, b, a,  "foobar"  );}

DonkeyHot ★★★★★
()
Вы не можете добавлять комментарии в эту тему. Тема перемещена в архив.