Skip to content

Files

Latest commit

 

History

History
19 lines (12 loc) · 358 Bytes

PublicInstanceField.md

File metadata and controls

19 lines (12 loc) · 358 Bytes

Pattern: Use of public field

Issue: -

Description

Using public fields is considered to be a bad design. Use properties instead.

Example of violations:

class Person {
    public String name
}

Further Reading