On Wed, Nov 20, 2002 at 11:41:06AM +0100, Lars Gullik Bjønnes wrote:
> I prefer
> 
>   string str("hello");
> 
> over
> 
>  string str = "hello";
> 
> 
> but
> 
>  string str = hello() + world();
> 
> over
>  
>  string str(hello() + world());

_I_ prefer the '=' all the time as I do not want to spend time thinking
about things like 

  char c;
  int i(int(c));
  int j(c);
  int k = int(c);
  int l = c;

[And no, you can't do 'i + j + k + l' afterwards]

Andre'

-- 
Those who desire to give up Freedom in order to gain Security,
will not have, nor do they deserve, either one. (T. Jefferson)

Reply via email to