iT邦幫忙

米歐 所有喜歡的回答 84

詢問C# Interface與實質型別轉型問題

在解釋這個問題前首先要先理解Reference type在記憶體中怎麼運作的 簡單來說Reference type需要動態產生記憶體且放在Heap上. var...

for 迴圈 星星 # 的排列

for i in range(1, 11): if i % 2 == 1: print('*' * 5) else: print('#'...

2019-11-21 ‧ 由 zac_tarn 提問

請問 K9S 是什麼

https://zh.wikipedia.org/wiki/%E8%AD%A6%E7%8A%AC 因為警犬 也叫 K9

2019-11-19 ‧ 由 阿展展展 提問

Visual Studio內像VSCode一樣的多行不同位置編輯

Shift + Alt + click如果是要分開的可以試試Ctrl + Alt + click參考

2019-11-15 ‧ 由 deh 提問

Python 閏年計算問題

翻出以前 C 的課本是先判斷能被 4 整除 但不能被 100 整除後再考慮其他的能不能被 400 整除 而你的寫法 year % 4 ==0 and (year...

2019-11-13 ‧ 由 chio0405 提問