码迷,mamicode.com
首页 >  
搜索关键字:test2 unit11    ( 841个结果
Python之路-函数
一.函数分类 1.内置函数 2.自定义函数 二.函数的使用 1.先定义 (1)准备工具工具的过程叫定义函数,内置函数解释器已经定义好,可以直接使用. 例: def 函数名(test1,test2,test3): 函数体 return 返回值 函数内部可以有多个return,但只能执行到一个retur ...
分类:编程语言   时间:2017-07-21 12:27:29    阅读次数:141
往一个已知数组中插入一个元素
package ch07;import java.util.Arrays;/** * Created by liwenj on 2017/7/19. */public class test2 { public static void main(String[] args) { char[] a = ...
分类:编程语言   时间:2017-07-19 14:34:09    阅读次数:127
nginx在windows下多域名简单配置
1. windows下安装nginx的目录结构如下: 2. 在nginx-1.12.1目录下conf/nginx.conf 内容 3. vhost 目录下 a_com.conf 内容: 4. vhost 目录下 b_com.conf 内容: 5. 在本地磁盘D盘下 新建 test 和 test2目录 ...
分类:Windows程序   时间:2017-07-19 12:05:35    阅读次数:187
js重置form表单
CreateTime--2017年7月19日10:37:11Author:Marydon js重置form表单 需要使用的方法:reset() 示例: HTML部分 <form id="test"> <input id="test2" type="hidden" value="2"/> <texta ...
分类:Web程序   时间:2017-07-19 12:02:57    阅读次数:490
多种排序
public class Test2 { static List list = new ArrayList(); /** * @param args */ public static void main(String[] args) { list.add(1); list.add(536); lis... ...
分类:编程语言   时间:2017-07-17 20:19:07    阅读次数:151
Linux中的预定义变量
解释: 主要是Bash中已经定好的变量,名称不能自定义,作用也是固定的 $? 最后一次执行的命令返回状态,0为成功,非0为失败 $$ 当前进程的进程号 $! 后台运行的最后一个进程的进程号 例子: [root@localhost sh]# ls param_test2.sh param_test.s ...
分类:系统相关   时间:2017-07-12 01:16:32    阅读次数:205
java_List_改变里面的对象的字段信息
//在直接获得List里面的对象之后直接修改对象就可以了A test = new A(); test.a = 1; test.b = 1; List list = new ArrayList(); list.add(test);//加到List里 A test2 = (A) list.get(0); ...
分类:编程语言   时间:2017-07-10 18:04:54    阅读次数:188
Python test2
测试:
分类:编程语言   时间:2017-07-07 21:22:21    阅读次数:171
Java 字符串比较(2)
public class Test2 { public static void main(String[] args) { String a = "aaa"; String b = "bbb"; String c = "aaa" + "bbb"; String d = "aaabbb"; Strin ...
分类:编程语言   时间:2017-07-06 15:10:09    阅读次数:227
spring 事务的传播特性
1.声明式事物中,一个类serviceA的方法test1()调用另一个类serviceB的方法test2() 要是serviceB的test2()事务配置在xml文件中为REQUIRED,又在此方法上加入 ...
分类:编程语言   时间:2017-07-05 21:20:26    阅读次数:243
841条   上一页 1 ... 38 39 40 41 42 ... 85 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!