> -----Original Message----- > From: Magesh Umasankar [mailto:[EMAIL PROTECTED] > > > > Which is more important - performance or 80 characters at most per > line? > > I think we should go with private static final Strings in cases > like above and allow them exceed the 80 character limit so as to > get maximum performance. > > I would like us to stick to 80 chars per line only if it > is not going to adversely impact runtime performance. > > Do you agree?
No. 1) we are talking about an exceptional situation which is unlikely to happen so performance is not an issue. 2) the static strings will be concatenated at compile time as there is no variables here. check the bytecode with javap -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>
