نکاتی در مورد کدنویسی کثیف/dirty codeو تمیز/clean code
دوشنبه, ۳۰ شهریور ۱۳۹۴، ۰۴:۵۵ ب.ظ
منبع : gameover.blog.ir
سعی کنید برای کدهاتون توضیح بذارید و dirty code رو به clean code ویرایش کنید.
کد تمیز کدی هست که فهم و درک اون آسونتر و کد کثیف کدی هست که فهم و درکش سخت تر باشه.
مثال:
کد کثیف:
کد:
if (Input .GetAxis ("Horizontal")<0)//Left
کد :
if (Input.GetKey(KeyCode.LeftArrow))//Left
کد:
if (Input .GetAxis ("Horizontal")>0)//Right
کد :
if(Input.GetKey (KeyCode.RightArrow))//Right
کد:
if (Input .GetAxis ("Vertical")>0)//Up
کد :
if (Input.GetKey (KeyCode.UpArrow))//Up
۹۴/۰۶/۳۰