重点是如何对一个负责的变量的定义进行抽丝剥茧。如: char *c3[][2] = { {"a1", "a2"}, {"b1", "b2"}, {"c1", "c2"}, }; char *(*c3_1)[2]; // (*c3_1):c3...
分类:
其他好文 时间:
2014-09-09 12:15:38
阅读次数:
135
1 #include 2 3 int main(void) 4 { 5 int x=252; 6 int y=105; 7 8 int temp; //临时保存变量 9 10 while(y!=0) //当y也就是余数为0的时候,x就是约数11 ...
分类:
其他好文 时间:
2014-09-06 18:30:53
阅读次数:
200
原文:02. SQL表达式的灵活使用什么是SQL表达式?在SQL语句中,表达式可以是函数,也可以是列和列之间的混合运算。很多时候,对于表达式的使用,可以比单独操作表上的列,带来更多方便。
一. 在HAVING中使用表达式 --drop table t
create table t(c1 int,c2...
分类:
数据库 时间:
2014-09-06 12:21:33
阅读次数:
282
shell编程中的字符串的截取方法:
一、Gnu Linux shell 截取字符变量的前8位,有方法如下:
1.expr substr “$a” 1 8
2.echo $a|awk ‘{print substr(,1,8)}’
3.echo $a|cut -c1-8
4.echo $
5.expr $a : ‘\(.\\).*’
6.echo $a|dd bs=1 count=8 ...
分类:
其他好文 时间:
2014-09-05 18:23:01
阅读次数:
214
ORACLE游标循环有几种用法,下面分别介绍一下。首先定义游标和变量CURSOR C1 IS SELECT eNAME,ejob FROM emp WHERE deptno=10;v_NAME VARCHAR2(10);v_job VARCHAR2(10);第一种:使用loop 循环 open c1...
分类:
数据库 时间:
2014-09-05 18:08:51
阅读次数:
198
drop table t1;
create table t1 (c1 char(2) primary key, c2 char(1) not null);
insert into t1 values ('A ','A');
select t1.c1 from t1
where t1.c1 in (select c2 from t1 union all select '0'||c2 c2 fr...
分类:
数据库 时间:
2014-09-04 16:58:39
阅读次数:
245
1. [代码][C/C++]代码 /** Copyright (c) 2011, Jim Hollinger* All rights reserved.** Redistribution and use in source and binary forms, with or without* mod...
分类:
其他好文 时间:
2014-09-04 16:40:09
阅读次数:
259
先看看一个例子: 1 #include 2 using namespace std; 3 4 main() 5 { 6 char *c1 = "abc"; 7 char c2[] = "abc"; 8 char *c3 = ( char* )malloc(3); 9 c...
分类:
编程语言 时间:
2014-09-04 16:33:19
阅读次数:
237
一 ,调用无参方法: import java.lang.reflect.Method; public class InvokeSayJapanDemo { public static void main(String[] args) { Class c1=null; try { c1=Class.f...
分类:
其他好文 时间:
2014-09-03 19:33:47
阅读次数:
180
1.目录文件在Linux下目录也是用文件来描述的特殊文件创建文件夹#include#includeint mkdir(const char *pathname,mode_t mode);删除文件夹(目录必须是空目录)#includeint rmdir(const char *pathname);#i...
分类:
系统相关 时间:
2014-09-03 11:02:16
阅读次数:
258