Menu

#8 Make inner class static if possible

open
nobody
Codechecks (15)
5
2005-09-29
2005-09-29
Bart Buil
No

Category: Miscellaneous

- Bad Code
class Foo {
Bar createBar() {
}
class Bar {
}
}

- Good Code
class Foo {
Bar createBar() {
}
static class Bar {
}
}

Discussion


Log in to post a comment.

Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.