摘要: int 1 1 => int 2 2 => int 3 3 => int 4 4 => string 'a' (length=1) 5 => string 'b' (length=1) 6 => string 'c' (length=1) 7 => string 'd' (length=1) */ ?> 阅读全文
posted @ 2017-06-06 10:14 sky20080101 阅读(158) 评论(0) 推荐(0) 编辑
摘要: array (size=5) 0 => string 'a' (length=1) 1 => string 'b' (length=1) 2 => string 'c' (length=1) 3 => string 'd' (length=1) 4 => string 'e' (length=1) 阅读全文
posted @ 2017-06-01 11:05 sky20080101 阅读(190) 评论(0) 推荐(0) 编辑
摘要:  C语言中一个语句太长用什么换行? 5 C语言中一个语句太长用什么换行?比如我有一个printf语句很长很长,问了美观,我不想写在这一行了,要换到下一行,是不是在这行结尾的时候,要用个什么标识来表示?     daaxi | 浏览 15242 次 推荐于2016-01-17 08:09:36  最佳答案 区分不同情况,有多种方式可... 阅读全文
posted @ 2017-05-26 17:22 sky20080101 阅读(1385) 评论(0) 推荐(0) 编辑
摘要: comment: timestamp: '; if(isset($_POST["comment"])) { echo $_POST["comment"]. ''; } $a=getdate($_POST["timestamp"]); $hour=$a['hours']+8; echo "{... 阅读全文
posted @ 2017-05-26 10:08 sky20080101 阅读(112) 评论(0) 推荐(0) 编辑
摘要: Mysql复制一条或多条记录并插入表|mysql从某表复制一条记录到另一张表一、复制表里面的一条记录并插入表里面 ① insert into article(title,keywords,desc,contents) select title,keywords,desc,contents from 阅读全文
posted @ 2017-05-25 09:18 sky20080101 阅读(828) 评论(0) 推荐(0) 编辑
摘要: Unable to load bean org.apache.struts2.dispatcher.multipart.MultiPartRequest (jakarta) 把commons-ileupload.jar 和 commons-io.jar 导入。 阅读全文
posted @ 2017-05-22 19:54 sky20080101 阅读(491) 评论(0) 推荐(0) 编辑
摘要: <a href="javascript:location=location;">刷新</a> 阅读全文
posted @ 2017-05-22 17:28 sky20080101 阅读(110) 评论(0) 推荐(0) 编辑
摘要: public class TestAbstract { public static void main(String[] args) { System.out.println("Hello World!"); absDemo.SayHi(); //new absDemo().SayHello();//TestAbstract.j... 阅读全文
posted @ 2017-05-17 09:43 sky20080101 阅读(129) 评论(0) 推荐(0) 编辑
摘要: import java.util.Scanner; public class TryScanner { /** * @param args */ public static void main(String[] args) { // TODO Auto-generated method stub try{ ... 阅读全文
posted @ 2017-05-15 13:45 sky20080101 阅读(820) 评论(0) 推荐(0) 编辑
摘要: public class Swap2 { public static void Swap2 (IDemo a, IDemo b) { int temp = a.i; a.i = b.i; b.i = temp; } public stati... 阅读全文
posted @ 2017-05-15 11:28 sky20080101 阅读(273) 评论(0) 推荐(0) 编辑