Enjoy the top 1 famous quotes, sayings and quotations by Ksenia Solo As Kenzi.
Famous Quotes By Ksenia Solo As Kenzi
Good news is, I'm still alive. Bad news is, Bitches be crazy. — Ksenia Solo As Kenzi
Famous Quotes
Watch for coupling that's too tight. "Coupling" refers to how tight the connection is between two classes. In general, the looser the connection, the better. Several general guidelines flow from this concept: Minimize accessibility of classes and members. Avoid friend classes, because they're tightly coupled. Make data private rather than protected in a base class to make derived classes less tightly coupled to the base class. Avoid exposing member data in a class's public interface. Be wary of semantic violations of encapsulation. Observe the "Law of Demeter" (discussed in Design and Implementation Issues of this chapter). Coupling goes hand in glove with abstraction and encapsulation. Tight coupling occurs when an abstraction is leaky, or when encapsulation is broken." Author: Steve McConnell