首页 > 2014年10月27日 > 全部分享
beanutils中Lazy
public class LazyBean {// public static void main(String[] args) {// DynaBean dynaBean=new LazyDynaBean();// dynaBean.set("foo", "bar");//单独// dyna...
分类:其他   时间:2014-10-27 06:51:37    收藏:0  评论:0  赞:0  阅读:223
beanutils中jdbc
public class JDBCTest {// public static void main(String[] args) throws Exception {// Class.forName("com.mysql.jdbc.Driver");// Connection conn=Driv.....
分类:数据库技术   时间:2014-10-27 06:51:17    收藏:0  评论:0  赞:0  阅读:242
A Tour of Go Range
Therangeform of theforloop iterates over a slice or map.package mainimport "fmt"var pow = []int{1, 2, 4, 8, 16, 32, 64, 128}func main() { for i, v ...
分类:其他   时间:2014-10-27 06:50:47    收藏:0  评论:0  赞:0  阅读:351
beanutils中WrapDynaBean
public class Emp { private String firstName="李"; private String lastName; public Emp() { } ; public String getFirstName() { return firstName; } pub...
分类:其他   时间:2014-10-27 06:50:37    收藏:0  评论:0  赞:0  阅读:187
调试.NET程序OutOfMemoryException (转载)
应用程序调试,需要有个常规的调试思路,应对各类问题最基本的调试手段是什么,不能一头雾水的上手而乱了阵脚,而且根据经验统计这些基本的步骤可以解决大多数的问题。
分类:Web开发   时间:2014-10-27 06:50:27    收藏:0  评论:0  赞:0  阅读:282
beanutils设置参数和获取参数
public class Employee implements DynaBean { private String firstName="李"; private String lastName; public Employee() { } ; public String getFirstNam.....
分类:其他   时间:2014-10-27 06:50:18    收藏:0  评论:0  赞:0  阅读:242
[Leetcode] Convert Sorted Array to Binary Search Tree
Given an array where elements are sorted in ascending order, convert it to a height balanced BST.Solution:/** * Definition for binary tree * public cl...
分类:其他   时间:2014-10-27 06:50:07    收藏:0  评论:0  赞:0  阅读:255
c++ 遍历ini
inline void CDLG_SET1::EnumIniFile(LPCTSTR pFilePath, CString strKey){ TCHAR strAppNameTemp[1024];//所有AppName的返回值 TCHAR strKeyNameTemp[1024];//对...
分类:编程语言   时间:2014-10-27 06:49:57    收藏:0  评论:0  赞:0  阅读:264
调整JVM堆内存解决OutOfMemoryError
遇到OutOfMemoryError后,借助jconsole工具,经过多次调整JVM的HeapSize解决了问题。
分类:其他   时间:2014-10-27 06:49:47    收藏:0  评论:0  赞:0  阅读:326
SQL Server 2008 安装(lpt亲测)
SQL Server安装真的遇到好多问题啊!! 于是就决定写个备忘,方便自己也方便别人。 1.下载安装包 2.打开安装包,就遇到了restart computer 那里failed的错误,导致无法继续,一开始以为安装包的问题,后来查了下才发现不是,动作如下: 开始 —> 运行regedit —...
分类:数据库技术   时间:2014-10-27 06:49:37    收藏:0  评论:0  赞:0  阅读:336
Go Slices: usage and internals
IntroductionGo's slice type provides a convenient and efficient means of working with sequences of typed data. Slices are analogous to arrays in other...
分类:其他   时间:2014-10-27 06:49:28    收藏:0  评论:0  赞:0  阅读:451
特征提取与特征选择
模式识别 机器学习 特征提取和特征选择...
分类:其他   时间:2014-10-27 01:46:48    收藏:0  评论:0  赞:0  阅读:318
链表的倒序输出
链表的倒序输出,我们可能想到的方法就是把链表翻转后然后再遍历一遍,这样的话时间复杂度是O(n),但是缺点是代码稍微复杂。或者是开辟一个数组,顺序遍历一个链表把元素复制到数组里面,最后再把数组倒序输出。其实这道题目时间复杂度都不可能低于O(n),但是考虑用栈的话代码就可能非常简单,代码如下所示: #include using namespace std; struct Node { int ...
分类:其他   时间:2014-10-27 01:46:37    收藏:0  评论:0  赞:0  阅读:315
POJ 3905 Perfect Election(2-sat)
POJ 3905 Perfect Election 题目链接 思路:很裸的2-sat,就根据题意建边即可 代码: #include #include #include #include #include using namespace std; const int MAXNODE = 2005; struct TwoSet { int n; vector ...
分类:其他   时间:2014-10-27 01:46:17    收藏:0  评论:0  赞:0  阅读:292
逗比学习树莓派之初篇
树莓派的官网提供了三个版本的镜像文件,还有无数第三方的镜像,由于是初次接触,还是用官网的Raspbian版本,因为是基于Debian的,所以Debian的一些命令和配置方法可以用得上。还要下载Win32DiskImager工具,用于在Windows下将下载的IMG文件写入到SD卡中...
分类:其他   时间:2014-10-27 01:46:07    收藏:0  评论:0  赞:0  阅读:347
JAVA学习第五十三课 — IO流(七)File对象练习 & Properties集合
一、深度遍历文件夹 撒...
分类:编程语言   时间:2014-10-27 01:45:47    收藏:0  评论:0  赞:0  阅读:334
cocos2dx实例开发之flappybird(入门版)
cocos2dx社区里有个系列博客完整地复制原版flappybird的所有特性,不过那个d...
分类:移动平台   时间:2014-10-27 01:45:37    收藏:0  评论:0  赞:0  阅读:402
hdu - 4974 - A simple water problem(贪心 + 反证)
题意:N个队(N 题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=4974 ——>>我们应该尽量使每场比赛的得分为1 : 1,这样可以达到最少的比赛场数(不小于单个队伍的分数)。 假设有2场比赛的比分为1 : 0, 1)a : b = 1 : 0,c : d = 1 : 0,这时可以安排a : c = 1 : 1,只需1场就可达到相同的分数。...
分类:其他   时间:2014-10-27 01:45:27    收藏:0  评论:0  赞:0  阅读:237
ORA-32001: write to SPFILE requested but no SPFILE specified at startup
SQL> alter system set sga_max_size=2048M scope=spfile; alter system set sga_max_size=2048M scope=spfile * ERROR at line 1: ORA-32001: write to SPFILE ...
分类:其他   时间:2014-10-27 01:44:47    收藏:0  评论:0  赞:0  阅读:282
A Tour of Go Slicing slices
---恢复内容开始---Slices can be re-sliced, creating a new slice value that points to the same array.The expressions[lo:hi]evaluates to a slice of the elemen...
分类:其他   时间:2014-10-27 01:44:37    收藏:0  评论:0  赞:0  阅读:375
1739条   上一页 1 ... 78 79 80 81 82 ... 87 下一页
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!