首页 > 2016年03月31日 > 全部分享
原生php登陆注册
本以为一个登陆注册功能十来分钟就写好了,没想到thinkPHP用久了,原生的php不会写了 最开始我直接写了类和方法,在前台传递参数给类的login方法(action="index.php/login"),尝试几次发现无法访问,这才意识到,这种方式是mvc模式,原生php不具有 然后,把登陆注册的p ...
分类:Web开发   时间:2016-03-31 07:06:16    收藏:0  评论:0  赞:0  阅读:451
RPD Volume 168 Issue 4 March 2016 评论7-end
Shielding activation of petawatt laser facilities in Romania: a FLUKA preliminary evaluation Abstract The FLUKA 2011.2c code was used to evaluate the ...
分类:其他   时间:2016-03-31 07:06:06    收藏:0  评论:0  赞:0  阅读:139
在VB中动态执行VBS代码,可操控窗体控件
通过执行一段VBS代码来操控窗体内的控件 也可以使用AddObject方法添加自己的类,那么在动态VBS代码中也一样可以使用 在增加程序扩展性或是有脚本化需求的时候,这个方法还是不错的. >>>运行效果如下图<<< ...
分类:Windows开发   时间:2016-03-31 07:05:56    收藏:0  评论:0  赞:0  阅读:391
arcgis for android 无法加载本地jpg影像解决办法
因为jpg影像没有生成金子塔文件*.rrd 一个完整的JPG影像必须包括如下文件: K-50-96-(16).aux 辅助文件K-50-96-(16).jgw 坐标信息K-50-96-(16).jpg 影像文件K-50-96-(16).rrd 金子塔文件 K-50-96-(16).jpg.aux.x ...
分类:移动平台   时间:2016-03-31 07:05:36    收藏:0  评论:0  赞:0  阅读:175
RPD Volume 168 Issue 4 March 2016 评论2
Influence of the phantom shape (slab, cylinder or Alderson) on the performance of an Hp(3) eye dosemeter Abstract In the past, the operational quantit ...
分类:其他   时间:2016-03-31 07:05:19    收藏:0  评论:0  赞:0  阅读:205
UVa 536 Tree Recovery | GOJ 1077 Post-order (习题 6-3)
传送门1: https://uva.onlinejudge.org/external/5/536.pdf 传送门2: http://acm.gdufe.edu.cn/Problem/read/id/1077 题意一样 输入不一样 HINT: 1. Preorder : (root, left sub ...
分类:其他   时间:2016-03-31 07:05:06    收藏:0  评论:0  赞:0  阅读:197
RPD Volume 168 Issue 4 March 2016 评论5
Monte Carlo simulation of secondary radiation exposure from high-energy photon therapy using an anthropomorphic phantom Abstract The development of in ...
分类:其他   时间:2016-03-31 07:04:30    收藏:0  评论:0  赞:0  阅读:188
RPD Volume 168 Issue 4 March 2016 评论1
GEANT4 calculations of neutron dose in radiation protection using a homogeneous phantom and a Chinese hybrid male phantom Abstract The purpose of this ...
分类:其他   时间:2016-03-31 07:04:16    收藏:0  评论:0  赞:0  阅读:254
RPD Volume 168 Issue 4 March 2016 评论6
Natural variation of ambient dose rate in the air of Izu-Oshima Island after the Fukushima Daiichi Nuclear Power Plant accident Abstract The ambient d ...
分类:其他   时间:2016-03-31 07:04:06    收藏:0  评论:0  赞:0  阅读:179
C语言中全局数组的注意点
假如有一个全局数组,int a[100],当在函数中对它进行操作,尤其是需要反复计算时,要注意它的状态。因为全局数组一旦存有数据,就不会随着某些函数的结束而清空。举例:阶乘的一个算法中,配置全局数组之后,每次对具体的一个数计算阶乘时,都要对数组的部分元素进行计算,而下次再计算另一个数时,就会借用上次 ...
分类:编程语言   时间:2016-03-31 07:03:56    收藏:0  评论:0  赞:0  阅读:257
MIT 6.828 JOS学习笔记16. Lab 2.2
Part 3 Kernel Address Space JOS把32位线性地址虚拟空间划分成两个部分。其中用户环境(进程运行环境)通常占据低地址的那部分,叫用户地址空间。而操作系统内核总是占据高地址的部分,叫内核地址空间。这两个部分的分界线是定义在memlayout.h文件中的一个宏 ULIM。JO ...
分类:其他   时间:2016-03-31 07:03:47    收藏:0  评论:0  赞:0  阅读:302
RPD Volume 168 Issue 4 March 2016 评论4
Non-vascular interventional procedures: effective dose to patient and equivalent dose to abdominal organs by means of DICOM images and Monte Carlo sim ...
分类:其他   时间:2016-03-31 07:03:38    收藏:0  评论:0  赞:0  阅读:253
RPD Volume 168 Issue 4 March 2016 评论3
Design and fabrication of a multipurpose thyroid phantom for medical dosimetry and calibration Abstract A multipurpose anthropomorphic neck phantom wa ...
分类:其他   时间:2016-03-31 07:03:28    收藏:0  评论:0  赞:0  阅读:158
阿花宝宝 Java基础笔记 之 继承
一,继承 当某些类有一些共同内容时,可以把这些共同 的内容抽取到父类中。1.分析出多个类共有的属性和方法2.将这些共有的抽取出一个父类,创建父类,讲共同的内容抽取到父类,本类只保留特有的内容 3.子类使用extends继承父类 public class 子类名 extends 父类名{ }super ...
分类:编程语言   时间:2016-03-31 07:03:06    收藏:0  评论:0  赞:0  阅读:223
LeetCode Count Primes
Description: Count the number of prime numbers less than a non-negative number, n. Credits:Special thanks to @mithmatt for adding this problem and cre ...
分类:其他   时间:2016-03-31 07:02:56    收藏:0  评论:0  赞:0  阅读:224
学习进度表
学习进度表 ...
分类:其他   时间:2016-03-31 07:02:46    收藏:0  评论:0  赞:0  阅读:133
Java_chapter20_递归
...
分类:编程语言   时间:2016-03-31 07:02:36    收藏:0  评论:0  赞:0  阅读:639
模板和泛型编程
第一次看,看第一节即可 1.我们可以为函数定义一个模板,而不是为每一个类型定义一个函数。 比较函数: #include <iostream> template <typename T> int compare(const T&v1, const T&v2) { if(v1 < v2) return  ...
分类:其他   时间:2016-03-31 07:02:26    收藏:0  评论:0  赞:0  阅读:258
ACCESS中的关键词
我自己就老是撞到这个墙...整理这个图才发现ACCESS的关键词从A~Y开头的都有,Z开头的没有. 以后命名就用"z"开头算了,绝对不会撞墙. ...
分类:数据库技术   时间:2016-03-31 07:02:19    收藏:0  评论:0  赞:0  阅读:228
软件测试(四)主路径覆盖hw3
原题中代码 控制流图 b:数组越界即可,当MAXPRIMES == 4时,n=5会引发越界 c: n= 1时,不满足numPrimes<n,所以指向12 d: 点覆盖{1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16} 边覆盖{(1,2),(2,3),(2,12),(3, ...
分类:其他   时间:2016-03-31 07:02:06    收藏:0  评论:0  赞:0  阅读:245
1740条   上一页 1 ... 70 71 72 73 74 ... 87 下一页
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!