主要技术.net sqlserver mysql。
能力说明:
了解变量作用域、Java类的结构,能够创建带main方法可执行的java应用,从命令行运行java程序;能够使用Java基本数据类型、运算符和控制结构、数组、循环结构书写和运行简单的Java程序。
暂时未有相关云产品技术能力~
阿里云技能认证
详细说明#region 行绘制事件 ,为DataGridView每行写上序号 /// /// 行绘制事件 ,为DataGridView每行写上序号 /// /// ...
适合编写c语言的系统是 Fedora Linux 其它的像ubuntu这些界面好看,但是很多东西(比如:很多动态库)都没有。 http://tech.
//字符输入 #include main() { int ch; int x=5,y=5; initscr(); keypad(stdscr,TRUE); curs_set(0); noecho(...
#include #include #include void init(); void drawui(); void business(); void destroy(); main() { init(); drawui(); bu...
#include /* 在initscr();后调用。 终端是否支持颜色:bool has_colors(); 初始化颜色:int start_colors(); 定义颜色对:int init_pair(short pair,short fore...
#include #include #include int a=6666; main() { char filename[100]; int fd; int data; sprintf(filename,"/proc/%d/mem",g...
之前用过一段时间,已经证实不能再用! #region 免费发送飞们接口(2014-01-06 16:20测试有效) /// /// 免费发送飞们接口(要开通飞信把对方加为好友才能发,也可以给自己...
一种是http请求的方式,另一种就是提供WebService接口供调用的。 #region sms.webchinese.
更新:2013-12-29 经过不断的修改和运行测试,在实际项目中使用得很好的了。。 using System; using System.
#include #include #include #include #include #include #include struct stu { char name[20]; int age; float score; }; //1 ...
今天维护了一台某公司的网站服务器,就是访问文件突然不存在了,花了些时间看了一下,原因如下: Global.asax 被改,变成了系统文件,还隐藏了。
using System; using System.Data; using System.Text.RegularExpressions; using System.
public string ToString(UserGiftCardModel model) { if (model == null) return ""; string sb = ""; Type type =model.
static void Main(string[] args) { Console.WriteLine("本程序去掉当前目录及子目录下的文件前缀"); Console.
//保存为一个js文件,引入使用就行了 function showHelp(id) { var obj = document.getElementById(id); obj.
//父窗体中打开模式窗口 function SelectClient(ctlName) { var arr = showModalDialog('ClientList.
$(function () { $(".cg2").change(function () { var id = $(this).
1、设置DropDownlist的AutoPostBack为True 2、绑定DropDownlist数据时出现了重复项, 在载入数据时保存数据状态应该写在Load事件中的if (!IsPostBack) 条件下 3、必须保证页面只有一个runat="server"的表单 4、页面中有一些按钮命名上用到Submit,替换所有的Submit重命名才可以提交表单,事件就可以触发到后台 5、 中 不能是 ViewStateMode="Disabled" 我出现的问题是第5条,刷新一下,原来的数据没了,真是问题太多。
http://www.anxz.com/down/3815.html 软件语言:多国语言 软件类型:系统其它/破解版 运行环境:Win2003, WinXP, Win7, Vista 软件大小:80 MB VMWare Workstation是一个“虚拟 PC”软件。
function apply() { goods_no = $('#goods_no').val(); num = $('#num').
http://www.ddooo.com/softdown/12445.htm
thunder://QUFodHRwOi8vcy5zYWZlNS5jb20vV2luZG93c1NlcnZlcjIwMDNTUDJFbnRlcnByaXNlRWRpdGlvbi5pc29aWg== http://www.
//iotool.c #include int inputInt(const char *info) { int r; printf("%s:",info); scanf("%d",&r); return r; } graphic.
class Program { static void Main(string[] args) { try { ...
iterator.cpp /* 迭代器 输入:可读,不一定可改值 输出:可改,不一定可读值 前向:可读可改 双向:支持 -- 随机:支持--、+n、-n、下标访问 */ #include #...
//specialcontainer.cpp /*一般容器:stack,queue 特殊容器:priority_queue .push(element),.
print.h //print.h #include using namespace std; #ifndef print_fun #define print_fun template ///显示序列数据 ...
弹出固定大小窗口 function openScript(url, width, height) { var Win = window.
http://www.nunit.org/index.php?p=download 上面地址下载,有安装版的,有直接解压版的,只有里面的nunit.framewor.dll就可以做简单的测试了。
/* multimap特性 key可以重复 不支持下标访问 */ #include #include #include "print.
/* map.cpp map特性 不允许key重复 key/value对 key可以当下标访问value,key不存在则插入新的key/value对,以0初始化 */ #include #include #include "print.
/* 关联式容器共性:二叉查找树实现,自动根据关键字排序,自动平衡 set,multiset,map,multimap 查找:.find(key) 失败返回.
原始数据: 测试代码: 运行结果: 源代码下载:http://download.csdn.net/detail/pukuimin1226/4685411 总结: c#操作各种数据库,主要是连接相关的类不同,操作的方法的步骤是一模一样的。
安装到最后出现问题,无响应,那么不要紧,前面的安装成功了,只是没配置。关闭之后,直接命令开启服务,再使用。 先开启服务 net start mysql5 --安装时指定的服务名称 再用 navicat lite 软件连接到localhost 初密码应该为空,用户名为root 在navicat lite登陆之后的user里,可以修改root密码,然后点save即可 --最好关闭mysql5,再开启一下。
/* 库模版中 list 特性: 双向链表 增删:.push_front(element),.pop_front(),.remove(element) 不支持下标访问 除去重复:.
/* deque特性 下标:.operator[](i)不检查越界,.at(i) 删除:.pop_front(),.pop_back() */ #include using namespace std; #include #include "print.
http://www.upan.cc/
using System; using System.Collections.Generic; using System.Text; using System.
//vector.cpp /* vector的特性 当前容量:.capacity() 约定容量:.reserve() 下标:.operator[](i) ,.
//sequence.cpp // sequence.cpp /* 序列式容器:vector,deque,list 插入:.
TeamViewer 是一个在任何防火墙和 NAT 代理的后台用于远程控制,桌面共享和文件传输的简单且快速的解决方案。为了连接到另一台计算机,只需要在两台计算机上同时运行 TeamViewer 即可而不需要进行一个安装的过程。
/* 迭代器 .begin(),.end() ,.rbegin() , .rend() 插入:.insert(position,element) 删除:.
//使用库函数排序举例 #include #include #include //内有排序库函数 using namespace std; #ifndef person_h_1 //预定义指令 #define person_h_...
//函数模版使用 //函数模版标准不支持参数默认值 #include #include using namespace std; template void sort(T* a,int n)//普通冒泡排序 { bool ch...
//栈中使用类模版例子 #include #include using namespace std; //typedef char T; template//可以有默认值,有默认值的参数靠右 //如果成员函数在类外写,那么每个...
基本上只要做上面两个地方的设置就行了、、
#include #include #include using namespace std; void sort(int* a,int n)//普通冒泡排序 { bool changed; do { changed...
#include using namespace std; class person { string name; int age; public: person(const char* n,int a):name(n),age(a){} friend bool operator b.
cn_visual_studio_team_foundation_server_2010_x86_x64_dvd_560211.iso ed2k://|file|cn_visual_studio_team_foundation_server_2010_x86_x64_dvd_560211.
#include using namespace std; typedef int T; class bst//有序的二叉查找树 { struct Node { T data; Node * L; Node *...