[LeetCode刷題筆記] 36 – Valid Sudoku
題目描述: Determine if a 9 x 9 Sudoku board is valid. Only …
題目描述: Determine if a 9 x 9 Sudoku board is valid. Only …
題目描述: Given an array of strings strs, group the anagram …
題目描述: Given an array of integers and an integer k, find …
題目描述: Given two arrays, write a function to compute the …
[LeetCode刷題筆記] 350 – Intersection of Two Arrays II Read More »
題目描述: Suppose Andy and Doris want to choose a restauran …
[LeetCode刷題筆記] 599 – Minimum Index Sum of Two Lists Read More »
題目描述: Given two strings s and t, determine if they are …
題目描述: Given an array of integers, return indices of the …
題目描述: Write an algorithm to determine if a number n is …
題目描述: Given two arrays, write a function to compute the …
在我們遊戲開發的過程中,其實有很多的變量/字段都可能是需要頻繁使用,但是這些變量/字段的值又是在那個物體/類在實例化的時候、甚至是遊戲一開始時就已經決定好而且之後都不會再進行改變的,那麼我們在這些字段之前加上readonly或const的話,在使用的時候不但會更方便,也會更加安全。說的更準確一點的話,readonly會讓字段使用更安全,const會讓字段使用更方便。