- Sep 29 Wed 2021 11:47
Android 讓物件動起來 : animatorSet
- May 14 Fri 2021 16:01
[Python] IOError: [Errno 24] Too many open files:
- Jun 17 Sun 2018 15:37
[Python] ** 雙星號(double star/asterisk) vs *單星號(star/asterisk) 用法
在看開源碼的時候,很容易看到像這樣的function parameter,附帶一個星號的參數 *args ,或是附帶兩個星號的參數 **kwargs,這是python 裡面很常用的語法,可以讓python接收任意數量的參數
def foo(param1, *args, **kwargs): # 順序不可對調!! pass
- Feb 25 Sun 2018 22:37
Python 傳值(pass by value) vs 傳址(pass by address) vs 傳物件(pass by object)?
曾經學過C++的,回頭過來看Python,可能就會誤認為Python 也有pass-by-value, pass by reference的概念就怕會不會因此在參數傳遞時產生大量不必要的運算量而拖慢了系統效能
- Jan 28 Sun 2018 01:43
[C++] 評估程式碼執行時間
#include <stdio.h> #include <future> using namespace std; int main() { double START, END; START = clock(); // [Your code here..] END = clock(); char szTime[100]; sprintf_s(szTime, 100, "Execute time : %lf - %lf = %lf \n",END, START, END - START); printf_s(szTime); system("PAUSE"); }
- Jan 07 Sun 2018 17:19
[C++] static_cast 用法說明 (基礎篇)
語法(Syntax) :
static_cast < new_type > ( expression )
Returns a value of type new_type
.
- Aug 11 Thu 2016 00:59
Python 基礎系列 map() 用法解說
現在要來看一下map()函式的用法!!
簡單看一下官方文件的簽名:
- Jul 19 Tue 2016 15:55
C# 陣列排序
在C# 裡面有提供內建的排序方法,內部使用Quicksort algorithm,這邊介紹三種解法對不同的需求進行排序。
- Primitive types
- Custom types using delegate
- Custom type using ICompareable
Array.Sort()
- Jun 25 Sat 2016 04:51
如何使用 C# 取得 Arduino Yun 的輸出資料
- Jun 04 Sat 2016 14:33
在visual studio2013 / 2015 使用XNA
在原生的Visual 2013並沒辦法直接開始XNA的專案,不曉得是什麼原因,難道是因為XNA要被放棄了嗎?