Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 |
Tags
- design pattern
- AES
- c++
- RAII
- sha256
- coroutines
- stringprintf
- Chrono
- type_traits
- sprintf
- WebView
- Functional
- Clojure
- SHA512
- haskell
- traits
- async
- template
- program
- kotlin
- Android
- web
- ChromeTab
- Reflect
- ranges
- go
- Scala
- CustomTab
- Observer
- SHA1
Archives
- Today
- Total
목록Chrono (1)
프로그래밍 검색 블로그
시간 관련 API
std chrono 관련 유틸 제작 12345678910111213141516171819202122232425#include namespace System{ long long currentTimeNanoseconds() { auto time = std::chrono::system_clock::now(); return std::chrono::duration_cast(time.time_since_epoch()).count(); } long long currentTimeMillis() { auto time = std::chrono::system_clock::now(); return std::chrono::duration_cast(time.time_since_epoch()).count(); } long long..
C++ 유틸
2017. 10. 4. 19:12