码迷,mamicode.com
首页 >  
搜索关键字:variables    ( 2229个结果
Java关键字--static
在Java中,将关键字static分为三部分进行讨论,分别为Java静态变量、Java静态方法、Java静态类Java Static VariablesJava instance variables are given separate memory for storage. If there is...
分类:编程语言   时间:2015-01-10 23:36:53    阅读次数:181
history and its relevant variables in Linux/GNU and Mac OS history命令以及相关环境变量
对于Terminalor们,history命令并不陌生,什么!n, !!更是很常用的,而且您在命令行敲的cmds是默认保存在/home/$USER/.bash_history(linux)/Users/$USER/.bash_history(Mac)下的。但是history不只是这个样子:存了命令然...
分类:系统相关   时间:2015-01-10 17:51:13    阅读次数:287
MySQL-10-mysql编程
MySQL编程 1.语句结束符   默认有两个: ; 和 \g(只能在命令行中使用) 可以使用delimiter 命令来修改语句结束符,例如: delimiter $$(注意,一般手工修改结束符后再改回默认值 ;)   2.注释   a) 行注释: # 和 --[空格] b) 块注释: /* */   3.变量 a) 系统变量: show variables [like pat...
分类:数据库   时间:2015-01-06 23:11:22    阅读次数:314
不使用第三方变量求最大值
1、问题描述There are two int variables: a and b, don't use "if", "?:", "switch" or other judgement statement, find out the biggest one of the two numbers.2...
分类:其他好文   时间:2015-01-06 17:01:16    阅读次数:165
Vs2013在Linux开发中的应用(29):寄存器信息
快乐虾http://blog.csdn.net/lights_joy/欢迎转载,但请保留作者信息当VS需要获取寄存器值的时候,会调用 // Creates an enumerator for properties associated with the stack frame, such as local variables. // The sample engine...
分类:系统相关   时间:2015-01-06 00:54:04    阅读次数:385
mysql   show global variables
以下变量全部来自mysql5.5.40-log包括该版本的所有变量,绝大部分变量都是解释的,那些没有解释的变量不是很重要,不过后期还是会补充上去的。以下变量只有部分经过本人验证,,没有验证均来自大师的博客.仅供参考。1.自增值相关auto_increment_increment 1#增量auto_increment_off..
分类:数据库   时间:2015-01-05 18:56:43    阅读次数:361
mysql数据库性能优化 - 参数优化
Mysql Server优化 1、查看mysql server参数show variables; / show variables like '参数名'; --mysql服务器...
分类:数据库   时间:2015-01-04 18:55:30    阅读次数:318
mysql - 查询编码
show variables like 'character%';结果如下:+--------------------------+---------------------------------------------------------------+| Variable_name | Va...
分类:数据库   时间:2015-01-02 22:19:20    阅读次数:285
MySQL慢查询
慢查询(slow log)可以帮助我们定位到特定的SQL语句进行SQL语句层面的优化,例如,慢查询日志会记录那些执行时间超过给定值得SQL语句,从而定位到问题的所在。 开启慢查询 查看MySQL数据库实例关于慢查询的参数 mysql> show variables like '%slow%'; +---------------------------+--------------------...
分类:数据库   时间:2015-01-02 17:34:55    阅读次数:208
c++primer学习笔记(2)-Variables(names initialization scope declare)
Initializers: 1.被初始化的变量在create那一瞬间得到值:double price = 109.99, discount = price * 0.6; 这样的定义是合理的。 Three ways of initialization: 1. int units = 0; 2. int units = {0}; 3. int units{0}; 4. int...
分类:编程语言   时间:2015-01-01 11:19:59    阅读次数:208
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!