码迷,mamicode.com
首页 >  
搜索关键字:using    ( 53562个结果
MyBatis(3.2.3) - Configuring MyBatis using XML, Properties
The properties configuration element can be used to externalize the configuration values into a properties file and use the properties' key names as p
分类:其他好文   时间:2016-02-29 16:00:11    阅读次数:125
常用自制脚本(一):透明度统一修改
using UnityEngine; using System.Collections; using UnityEngine.UI; /// <summary> /// User interface alpha ctrl. /// 统一控制图片的透明度 /// </summary> public c
分类:其他好文   时间:2016-02-29 14:19:03    阅读次数:166
C# 窗体常用API函数 应用程序窗体查找
常用的处理窗体的API函数如下(注意:API函数必须放在窗体中...): 使用C#语言,要引用DllImport,必须要添加using System.Runtime.InteropServices命名空间 (1)获得当前前台窗体句柄 [DllImport("user32.dll", CharSet
分类:Windows程序   时间:2016-02-29 14:14:23    阅读次数:314
接口写法定义
获取接口的方法 public static T GetProvider<T>() { using (var kernal = new StandardKernel(new BusinessBinding())) { var provider = kernal.Get<T>(); return pro
分类:其他好文   时间:2016-02-29 12:43:59    阅读次数:212
bzoj 1022: [SHOI2008]小约翰的游戏John
1 #include<cstdio> 2 #include<iostream> 3 using namespace std; 4 int T,a[100],n; 5 int main() 6 { 7 scanf("%d",&T); 8 for(;T;T--) 9 { 10 int a1=0,kg=0
分类:其他好文   时间:2016-02-29 12:40:01    阅读次数:158
bzoj 1013: [JSOI2008]球形空间产生器sphere
1 #include<iostream> 2 #include<cstdio> 3 #include<cmath> 4 #define eps 1e-6 5 #define M 15 6 using namespace std; 7 double a[M],b[M][M]; 8 int n; 9 i
分类:Web程序   时间:2016-02-29 12:31:34    阅读次数:153
数据访问公共类
using System; using System.Data; using System.Data.Common; using System.Configuration; using System.Text; using System.Collections.Generic; using Syst
分类:其他好文   时间:2016-02-29 12:27:48    阅读次数:200
HDU 1083 网络流之二分图匹配
http://acm.hdu.edu.cn/showproblem.php?pid=1083 二分图匹配用得很多 这道题只需要简化的二分匹配 #include<iostream> #include<cstdio> #include<cstring> #define maxm 410 using na
分类:其他好文   时间:2016-02-29 12:10:35    阅读次数:152
(5)实现一个函数,把一个字符串中的字符从小写转为大写。
#include "stdio.h"#include "conio.h"#include "stdafx.h"#include <iostream>using namespace std; void upper(char* s, char* us){ while(*s != '\0') { if(*
分类:其他好文   时间:2016-02-29 10:42:30    阅读次数:145
(4)一个学生的信息是:姓名,学号,性别,年龄等信息,用一个链表,把这些学生信息连在一起, 给出一个age, 在些链表中删除学生年龄等于age的学生信息。
#include "stdio.h"#include "conio.h"#include "stdafx.h"#include <iostream>using namespace std;struct stu{ char name[20]; char sex; int no; int age; st
分类:其他好文   时间:2016-02-29 10:39:10    阅读次数:151
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!