背景
将 -Dlog4j.debug 添加到IDEA的类的启动配置中 运行上图代码,这里log4j2.xml控制的日志级别是info,很明显是没生效。
DEBUG StatusLogger org.slf4j.helpers.Log4jLoggerFactory is not on classpath. Good!
DEBUG StatusLogger Using Shutdow…
算法题常用API
std::accumulate
函数原型:
template< class InputIt, class T >
T accumulate( InputIt first, InputIt last, T init );一般求和的,代码如下:
int sum accumulate(vec.begin() , vec.end() , 0);详细用法参考
lo…