码迷,mamicode.com
首页 >  
搜索关键字:oid    ( 16201个结果
Mybatis学习(1)
一、原生态jdbc程序存在的问题: mybatis框架原理、执行过程: 二、入门程序 1)环境搭建: mybatis下载地址:https://github.com/mybatis/ 导入jar包,工程结构: 1 public void findUserByNameTest() throws IOEx ...
分类:其他好文   时间:2017-01-11 07:34:31    阅读次数:206
237.单链表移除节点 Delete Node in a Linked List
QuestionWrite a function to delete a node (except the tail) in a singly linked list, given only access to that node.Supposed the linked list is 1 -> 2... ...
分类:其他好文   时间:2017-01-10 23:35:13    阅读次数:235
排序之简单的快速排序
写的非常简单 看看思路就可以 //6 1 2 7 9 3 4 5 10 8#include<stdio.h>int a[100],n;void quick(int l,int r){ int i,j,temp,t; if(l>r) { return; } temp=a[l]; i=l; j=r; w ...
分类:编程语言   时间:2017-01-10 19:47:11    阅读次数:171
Java String 如何加双引号
1 public class Test{ 2 3 public static void main(String[] args){ 4 String str1 = "\"name\"";//字符串两边含有双引号 5 String str2 = "name \"is\" zcr";//字符串中间含有双引... ...
分类:编程语言   时间:2017-01-10 19:11:28    阅读次数:200
winform频繁刷新导致界面闪烁解决方法
转自龙心文 原文 winform频繁刷新导致界面闪烁解决方法 一、通过对窗体和控件使用双缓冲来减少图形闪烁(当绘制图片时出现闪烁时,使用双缓冲) 对于大多数应用程序,.NET Framework 提供的默认双缓冲将提供最佳效果。默认情况下,标准 Windows 窗体控件是双缓冲的。可以通过两种方法对 ...
分类:Windows程序   时间:2017-01-10 17:59:20    阅读次数:366
image图片拉伸
//iOS5以前设置拉伸图片 -(void)loadImageBeforeIOS5{ //35*30 UIButton *nextButton = [[UIButton alloc] initWithFrame:CGRectMake(80, 180, 100, 40)]; [nextButton s ...
分类:其他好文   时间:2017-01-10 14:52:26    阅读次数:157
Bugly热更新——初探
Bugly热更新是基于微信的Tinker实现的。集成其热更新功能后可以一键生成patch包,然后上传到bugly平台。 基本步骤 详细说明 编辑根目录下的gradle文件 在buildscript.dependencies下增加: classpath ('com.tencent.tinker:tin ...
分类:其他好文   时间:2017-01-10 14:43:16    阅读次数:600
UIView的setNeedsLayout, layoutIfNeeded 和 layoutSubviews 方法之间的关系解释
layoutSubviews总结ios layout机制相关方法- (CGSize)sizeThatFits:(CGSize)size- (void)sizeToFit——————-- (void)layoutSubviews- (void)layoutIfNeeded- (void)setNeed ...
分类:其他好文   时间:2017-01-10 14:37:58    阅读次数:175
cordova插件分类
1.android自动更新功能所需插件 cordova plugin add https://github.com/whiteoctober/cordova-plugin-app-version.git // 获取APP版本 cordova plugin add https://github.com ...
分类:其他好文   时间:2017-01-10 13:24:04    阅读次数:197
全局文件,错误页,静态页,IIS配置及防黑
添加全局应用程序类。 错误页: 配置web.config,配置customErrors区域: <customErrors mode="On" defaultRedirect="MyErrorPage.aspx"> <error statusCode="403" redirect="NoAccess. ...
分类:其他好文   时间:2017-01-09 22:00:41    阅读次数:228
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!