上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 15 下一页

2018年8月26日

【php学习-4】

摘要: var_1=11; print $var1->var_1.$var2->var_1; ?> print_Color(); ?> y=self::$x; # code... } } $z=new myClass(); print $z->y; $w=new myClass(); print $w->y 阅读全文

posted @ 2018-08-26 15:41 activecode 阅读(152) 评论(0) 推荐(0) 编辑

【c学习-12】

摘要: /*枚举*/ #include void enumFunction(){ enum enum_var{"a","b",1,2}; enum{"c","d",2,1}enum_var_2; printf("enum_var:%d\nenum_var_2:%d\n", enum_var,enum_var 阅读全文

posted @ 2018-08-26 10:09 activecode 阅读(141) 评论(0) 推荐(0) 编辑

2018年8月25日

【php练习源码】

摘要: Something is wrong with the XAMPP installation :-( value[$name]=$sex; } public function getInfomation($myClass){ foreach($this->vars as $name=>$value) 阅读全文

posted @ 2018-08-25 18:54 activecode 阅读(342) 评论(0) 推荐(0) 编辑

【c语言学习-11】

摘要: /*指针*/ #include void charPointFunction(){ //字符型数组 char *x="I like code",y[10];//使x[]初始化,使y[]未初始化 //计数器 int i; x=x+2; //移动数组元素指针 printf("%s",x); //循环 / 阅读全文

posted @ 2018-08-25 09:43 activecode 阅读(177) 评论(0) 推荐(0) 编辑

2018年8月24日

【c学习-10】

摘要: #include #include #define SOURCE 0 //递归函数 /* [基本类型 [整型(int,[长整型(long int), [短整型(short int),长度整型(long short int) ),字符型(char),布尔型(bool) c语言结构类型 : [浮点型(d 阅读全文

posted @ 2018-08-24 10:24 activecode 阅读(195) 评论(0) 推荐(0) 编辑

2018年8月23日

【shell脚本学习-2】

摘要: #!/bin/bash - #echo do you have exetuate this project \n printf "please input your passwd" stty -echo read pass 1.txt | sort > 2.txt #echo "1 6 8 1 4 阅读全文

posted @ 2018-08-23 21:17 activecode 阅读(153) 评论(0) 推荐(0) 编辑

【c学习-10】

摘要: #include #include #include //操作系统操作库文件 //#include #include #include #include #define Point(a,b)((a)>(b))?:(a)(b) //宏 //int *p1, *p2;//i,j,z,w; void go 阅读全文

posted @ 2018-08-23 09:12 activecode 阅读(106) 评论(0) 推荐(0) 编辑

2018年8月22日

【c学习-9】

摘要: /*内存练习*/ #include #include//引入内存分配库文件 int main(){ double* x; //定义整型指针和double指针 int* y; x=(double*)malloc(sizeof(x));//为double分配空间 printf("%d\n",sizeof 阅读全文

posted @ 2018-08-22 14:11 activecode 阅读(91) 评论(0) 推荐(0) 编辑

2018年8月21日

【c学习-8】

摘要: /*继承结构体*/ #include // 定义子结构体 struct date{ int year; int month; int day; }; //定义父结构体 struct student{ char name[20]; int age; char sex; struct date birt 阅读全文

posted @ 2018-08-21 08:22 activecode 阅读(228) 评论(0) 推荐(0) 编辑

2018年8月20日

【c学习-7】

摘要: #include /*#include"test31.c"*/ //定义阶乘函数 /* int fac(int n){ //定义寄存器存储变量 register int i ,f=1; //循环形参计数器计数阶乘表达式 for(i=0;i extern varx; int power(int n){ 阅读全文

posted @ 2018-08-20 13:03 activecode 阅读(162) 评论(0) 推荐(0) 编辑

上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 15 下一页

导航