10.1. Operating System Interface The os module provides dozens of functions for interacting with the operating system: >>> >>> import os >>> os.getcwd ...
分类:
其他好文 时间:
2016-10-22 17:55:07
阅读次数:
301
/** * @method * * @brief 获取两个日期之间的天数 * @param fromDate 起始日期 * @param toDate 终止日期 * @return 总天数 */ + (NSInteger)numberOfDaysWithFromDate:(NSDate *)from ...
分类:
移动开发 时间:
2016-10-19 09:42:22
阅读次数:
141
这里放置了阅读版本千寻的《Visual C++ 冒险游戏程序设计》一书以及配套源码时,自己对书中以及源码的理解以及一些心得,大部分都是将心得以注释的形式写在配套源代码中; // // @brief 下述代码描述了脚本编译器如何在一遍处理(1 Pass)之内同时收集与处理标签符号 // // // @ ...
分类:
编程语言 时间:
2016-10-18 09:27:17
阅读次数:
303
/* * @FileName: test_sleep.c * @Author: wzj * @Brief: * * * @History: * * @Date: 2012年02月07日星期二22:20:00 * */ #include<stdio.h> #include<stdlib.h> #inc ...
分类:
系统相关 时间:
2016-10-11 21:50:26
阅读次数:
238
声明:转来的,原文出处:http://blog.csdn.net/achaoluo007/article/details/43564321 编者按:本文收集了百来篇关于机器学习和深度学习的资料,含各种文档,视频,源码等。而且原文也会不定期的更新,望看到文章的朋友能够学到更多。《Brief Histo ...
分类:
其他好文 时间:
2016-09-25 23:32:33
阅读次数:
272
There are a number of algorithms that are typically used for system identification, adaptive control, adaptive signal processing, and machine learning ...
分类:
其他好文 时间:
2016-09-24 21:40:06
阅读次数:
197
作用:查看文件类型信息 格式:file[OPTIONS...] [FILE...] 主要参数: --help 显示帮助信息 -v,--version 输出版本信息并退出 -b,--brief 不显示文件名字 -f,--files-fromFILE 显示指定文件的类型(可指定多个用" "分开) -F, ...
分类:
系统相关 时间:
2016-09-10 20:39:46
阅读次数:
188
/*为节省时间,本文以汉文撰写*/ ~前言~ 深入学习正则表达式,可以很好的提高思维逻辑的缜密性;又因正则应用于几乎所有高级编程语言,其重要性不言而喻,是江湖人士必备的内功心法。 正则表达式概要(object:PCRE) 「一」匹配方向 横向视图,即按行:从左至右 纵向视图,即按列:自上而下 「二」 ...
分类:
其他好文 时间:
2016-07-28 15:03:49
阅读次数:
240
初始的Cocos2d-JS项目中的main.js代码的内容为: /** * A brief explanation for "project.json": * Here is the content of project.json file, this is the global configura ...
分类:
Web程序 时间:
2016-07-28 13:59:44
阅读次数:
305
一、获取设备音量
/**
* @brief GetAudioOutputVolumn用于获取设备输出音量
* @remark 不指定设备可能导致获取的音量为0
*/
int DeviceManager::GetAudioOutputVolumn( const std::string &deviceName )
{
//对于DirectSound设备,获取其对应波形设备音量...