上一页 1 2 3 4 5 6 7 ··· 15 下一页
摘要: 隐式使用intent,在被启动的activity的manifest文件配置该活动 在出发活动建立intent时就写好和 网页浏览器用new intent 时用Intent.ACTION_VIEW其在activity的manifest文件下的intent filter值为android.intent. 阅读全文
posted @ 2016-03-20 21:57 Gabyler 阅读(371) 评论(0) 推荐(0) 编辑
摘要: 转载自:http://aeroj-blog.logdown.com/posts/435808 You will be provided with an initial array (the first argument in the destroyer function), followed by 阅读全文
posted @ 2016-03-20 21:40 Gabyler 阅读(171) 评论(0) 推荐(0) 编辑
摘要: 设计性实验编程实现对学生成绩表的相关信息排序。实验要求:⑴ 建立一个由n个学生的考试成绩表,每条信息由学号、姓名和分数组成。⑵ 按学号排序,并输出排序结果。⑶ 按分数排序,分数相同的则按学号有序,并输出排序结果。⑷ 排序方法及学生成绩表的存储结构不作限制,学生选择性能较好的即可。 代码如下: #in 阅读全文
posted @ 2016-02-29 22:54 Gabyler 阅读(3223) 评论(0) 推荐(0) 编辑
摘要: 遇过的坑: 使用GitBash安装Hexo(npm的环境变量配置)注意 安装完成后添加Path环境变量,使npm命令生效。新版已经会自动配置Path 1 ;C:\Program Files\nodejs\node_modules\npm 第二坑:安装了旧版本的hexo,卸载:Q:如何卸载Hexo?A 阅读全文
posted @ 2015-11-30 22:52 Gabyler 阅读(354) 评论(0) 推荐(0) 编辑
摘要: 遇到哪些坑:Gradle:configure project 卡死在此处Haxm is not installedhax is not working and emulator runs in emulation mode(Haxm安装之后)Genymotion插件安装及使用他们的解决方法:Grad... 阅读全文
posted @ 2015-11-30 16:25 Gabyler 阅读(954) 评论(0) 推荐(0) 编辑
摘要: 首先下载git 打开git Bash由于是分布式控制系统,每台机器必须自报家门输入:$git config --global user.name "guojiale"$git config --global user.email "gil102@sina.cn"--global这个参数表示这台机器上... 阅读全文
posted @ 2015-11-17 19:28 Gabyler 阅读(218) 评论(3) 推荐(0) 编辑
摘要: #include #include #includestruct Node;typedef struct Node* ptrToNode;typedef ptrToNode Stack;int len = 0;struct Node{ char bin; Stack Next;};Sta... 阅读全文
posted @ 2015-11-17 14:51 Gabyler 阅读(213) 评论(0) 推荐(0) 编辑
摘要: 1.2.click me以上两种均可设置button////////////////////////////form的action属性表示表单的数据将会发送到这个地方浏览器的method属性GET和POST两种get:浏览器与表单处理服务器建立连接,然后将表单数据附加在action URL后,一次性... 阅读全文
posted @ 2015-11-12 14:59 Gabyler 阅读(264) 评论(0) 推荐(0) 编辑
摘要: 1.仅用js的document.write来向文档写内容My First Web PageView Code2.但如果在文档加载完成后,类似于用某个按钮来document.write就会覆盖整个文档My First Web PageMy First Paragraph.点击这里View Code3.... 阅读全文
posted @ 2015-11-11 15:01 Gabyler 阅读(124) 评论(0) 推荐(0) 编辑
摘要: File file = new File("SongList.txt");BufferedReader reader = new BufferedReader(new FileReader(file));String line = null;while((line = reader.readLine... 阅读全文
posted @ 2015-11-09 19:28 Gabyler 阅读(137) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 ··· 15 下一页