• [^] # Re: Style ?

    Posté par . En réponse au journal Application web pour calculer l'achat d'un bien immobilier. Évalué à 1.

    Bad

    class Morgage
     /* SNIP */
     def initialize (p,d,i,l,c,s,a,w,f,r,g,m,v,o,u) 
    
    

    Worse

    class Morgage
     /* SNIP */
     def initialize (property,deposit_rate,deposit,interest,length,loan_balance,conveyancing,survey,appreciation_rate,depreciation_length,insurance,rent,ground_lease,changes,added_value,occupancy,resell)
    
    

    Good?

     /* SNIP */
     def initialize (options = {})
     @property = options[:property]