מאי.16

שתי בעיות הכי קשות בתכנות

שתי בעיות הכי קשות בתכנות

ישנן רק שתי בעיות קשות במדעי המחשב:  פסילת זכרון מטמון ונתינת שמות, ושגיאות באחד. פיל קרלטון

There are two hard things in computer science:
1. cache invalidation,
2. naming things,
3. off-by-one errors.

 - PHIL KARLTON 

  1. public int MultiplyTo(int max)
  2. {
  3. int product = 1;
  4. for (var i = 0; i <= max; i++)
  5. {
  6. product *= i;
  7. }
  8. return product;
  9. }


תגיות:
שתף את הסיפור הזה:

תגובות(0)

השאירו תגובה

קפטצ'ה לא מתאימה

תגובה