<!-- 插入新的问题件 --> <!-- useGeneratedKeys="true"把新增加的主键赋值到自己定义的keyProperty(id)中 --> <insert id="insert" parameterType="jw.base.entity.WrongRecApply" useG ...
分类:
其他好文 时间:
2017-09-05 00:21:04
阅读次数:
165
1.通过c直接实现 #include <stdio.h> #include <stdlib.h> #include <sys/types.h> #include <sys/stat.h> #include <fcntl.h> #include <unistd.h> int fileNum=0; ch ...
分类:
系统相关 时间:
2017-09-03 00:21:26
阅读次数:
253
#!/usr/bin/env python # -*- coding: utf-8 -*- from sklearn.feature_extraction import DictVectorizer import csv from sklearn import tree from sklearn i... ...
分类:
其他好文 时间:
2017-09-01 13:37:43
阅读次数:
296
组织测试代码 前面已经了解到测试的原理和步骤,但只是默认类string的测试,如果是我们自己写的类改怎么测试呢? 如下 class Widget(object): def __init__(self,name,width=50,height=50): self.name = name self.wi ...
分类:
编程语言 时间:
2017-08-30 13:14:21
阅读次数:
175
本文转载自:http://blog.csdn.net/lengyue1084/article/details/77637354 一.概念 在Android设备shell终端可以看到/system目录下的build.prop文件,android的build.prop文件是在Android编译时刻收集的 ...
分类:
移动开发 时间:
2017-08-29 12:57:50
阅读次数:
276
2017-08-25 12:00:53 writer:pprp 很简单的枚举,但是我调试了很长时间,出现各种各样的问题 ...
分类:
其他好文 时间:
2017-08-25 13:56:53
阅读次数:
257
A. Chess Tourney Berland annual chess tournament is coming! Organizers have gathered 2·n chess players who should be divided into two teams with n peo ...
分类:
其他好文 时间:
2017-08-22 21:50:03
阅读次数:
237
一. 题目描写叙述 You are playing the following Bulls and Cows game with your friend: You write down a number and ask your friend to guess what the number is. ...
分类:
其他好文 时间:
2017-08-18 19:57:14
阅读次数:
225
闲来无事,只有写代码啦,以下为DataTable转List与List转DataTable的两个方法,主要技术点用到了反射原理: 调用: ...