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 |
Tags
- Reflect
- sha256
- c++
- Functional
- RAII
- haskell
- SHA512
- program
- stringprintf
- ranges
- design pattern
- sprintf
- Chrono
- traits
- WebView
- async
- template
- kotlin
- Scala
- coroutines
- go
- Clojure
- CustomTab
- Observer
- Android
- SHA1
- ChromeTab
- web
- type_traits
- AES
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