About Cacher
Web App
Download
Sign In
Sign Up
menu
Cacher is the code snippet organizer for pro developers
We empower you and your team to get more done, faster
Learn More
JustDoItTomorrow
3/7/2018 - 2:48 AM
share
Share
add_circle_outline
Save
获取数组长度
main.cpp
content_copy
file_download
template<class T> int length(T& arr) { return sizeof(arr) / sizeof(arr[0]); }
clear