码迷,mamicode.com
首页 >  
搜索关键字:functions    ( 1849个结果
API和web API
API Apis (Application Programming interfaces) are predefined functions designed to provide applications and developers the ability to access a set of ...
分类:Windows程序   时间:2018-11-17 20:44:42    阅读次数:331
[LeetCode] Design HashMap 设计HashMap
Design a HashMap without using any built-in hash table libraries. To be specific, your design should include these functions: put(key, value) : Insert ...
分类:其他好文   时间:2018-11-17 10:31:39    阅读次数:293
[LeetCode] Design HashSet 设计HashSet
Design a HashSet without using any built-in hash table libraries. To be specific, your design should include these functions: add(value): Insert a val ...
分类:其他好文   时间:2018-11-15 23:40:50    阅读次数:349
企业级URL检测脚本
1 #!/bin/bash 2 #检查web url 是否正常 3 4 . /etc/init.d/functions #引用系统函数库 5 6 #判断传参个数是否为一个 7 usage(){ 8 echo $"usage:$0 url" 9 exit 1 10 } 11 12 #检查url函数 ,... ...
分类:Web程序   时间:2018-11-10 17:53:04    阅读次数:197
Adventures in Functions
速度还行,两天看完一章,就是有细节没去扣。书上的大部分知识点和代码都看了,这个还是可以的。 今天继续来学习函数的高级特性,要涉及到以下的主题。 内联函数(inline function) 引用变量(reference variable) 通过引用传递函数参数 默认变量 函数重载 函数模板(templ ...
分类:其他好文   时间:2018-11-10 10:51:58    阅读次数:186
windows平台,实现录音功能详解
音频处理分为播放和录音两类。对这些处理,微软提供了一些列函数,称之为Waveform Functions。这篇文章讨论录音功能。会对微软提供的函数做简单说明,并对这些函数封装成c++类,再进一步封装成c#类。 1 Waveform Functions函数简介 根据录音处理步骤,对这些函数做简单介绍。 ...
分类:Windows程序   时间:2018-11-09 22:59:35    阅读次数:257
Sqlite文件在ubunut的查看
1. How to list the tables in a SQLite database file that was opened with ATTACH? The .tables, and .schema "helper" functions don't look into ATTACHed ...
分类:数据库   时间:2018-11-09 19:17:59    阅读次数:184
Functions: C++'s Programming Modules
在这一章中要学习以下内容: 函数基础 函数原型 通过value向函数传递参数 设计处理数组的函数 使用const指针参数 设计函数处理文本字符串 设计函数处理结构体 设计函数处理string类型的对象 函数的递归 指向函数的指针(函数指针) C++有一个庞大的有用的函数库(standard ANSI ...
分类:编程语言   时间:2018-11-08 23:25:28    阅读次数:302
PHP执行系统外部命令函数:exec()、passthru()、system()、shell_exec()
php提供4种方法执行系统外部命令:exec()、passthru()、system()、 shell_exec()。在开始介绍前,先检查下php配置文件php.ini中是有禁止这是个函数。找到 disable_functions,配置如下: 如果“disable_functions=”后面有接上面 ...
分类:Web程序   时间:2018-11-05 19:04:32    阅读次数:176
Mysql中文字符串提取datetime
DATE_FORMAT无法用于提取含中文字符的时间字符串中的时间, 可以通过STR_TO_DATE来提取其中的信息, 如下: 结果: 参考: https://dev.mysql.com/doc/refman/8.0/en/date and time functions.html function_s ...
分类:数据库   时间:2018-11-05 17:24:08    阅读次数:194
1849条   上一页 1 ... 30 31 32 33 34 ... 185 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!