首页 > 2015年02月24日 > 全部分享
5.Firedac错误信息
主要错误信息属性:1.EFDDBEngineException Errors -- TFDDBError对象集合.ErrorCount --错误的记录数Kind -- DBMS的错误集合.Message --错误消息.2. TFDDBError属性:ErrorCode -- DBMS错误代码Kind...
分类:其他   时间:2015-02-24 13:46:29    收藏:0  评论:0  赞:0  阅读:487
JS中null和undefined的区别
Undefined类型只有一个值,即undefined。当声明的变量还未被初始化时,变量的默认值为undefined。Null类型也只有一个值,即null。null用来表示尚未存在的对象,常用来表示函数企图返回一个不存在的对象。参考http://www.cnblogs.com/eastday/arc...
分类:Web开发   时间:2015-02-24 13:46:19    收藏:0  评论:0  赞:0  阅读:155
POJ 1976 A Mini Locomotive【DP】
题意:给出一列火车,可以由三个火车头拉,每个火车头最多拉m节车厢(这m节车厢需要保持连续),再给出n节车厢,每节车厢的人数,问最多能够载多少人到终点。可以转化为三个长度相等的区间去覆盖n个数,使得这些数的和最大。 用dp[i][j]表示前i个数用j个区间覆盖所得到的最大值,状态转移则为覆盖第i个数,...
分类:其他   时间:2015-02-24 13:46:09    收藏:0  评论:0  赞:0  阅读:227
sublime 学习笔记
1、preferences - setting users 来设置字体大小等个性化ctrl+n 新建文件 ctrl+shift+p 输入某个关键词在设置到那个环境的语法提示2、go anythingCtrl+p 快速打开 go anything 查找任何文件@ 在css中会列出所有的元素 在js文件...
分类:其他   时间:2015-02-24 13:45:49    收藏:0  评论:0  赞:0  阅读:221
PHP扩展开发(1):入门
有关PHP扩展开发的文章、博客已经很多了,比较经典的有:TIPI项目(http://www.php-internals.com/,强烈推荐)《Extending and Embedding PHP》(中文翻译见http://www.walu.cc/phpbook/,强烈推荐)《PHP核心技术与最佳实...
分类:Web开发   时间:2015-02-24 13:45:39    收藏:0  评论:0  赞:0  阅读:273
DotA – We,the Community.
DOTA始于2002年,首作者是一位叫做EUL的WAR3玩家,之后又历经了包括Gunisoo等玩家作者之手,后来Gunisoo与团队中的Pendragon发生矛盾后离开了DOTA;那时DOTA初具人气但是尚有大量平衡性的不足和遗留BUG,这一切在冰蛙(ICEFROG=IF)接手后得到了解决。大约在2...
分类:编程语言   时间:2015-02-24 13:45:29    收藏:0  评论:0  赞:0  阅读:207
Leetcode Integer to Roman
Given an integer, convert it to a roman numeral.Input is guaranteed to be within the range from 1 to 3999.对于这道题,要把罗马数字中的几个特殊的数字保存到一张表中,如,4,5,9,10等,然后开...
分类:其他   时间:2015-02-24 13:45:19    收藏:0  评论:0  赞:0  阅读:167
3、计算器(调用函数)
using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Text;u...
分类:其他   时间:2015-02-24 13:45:09    收藏:0  评论:0  赞:0  阅读:300
PAT:1013. 数素数 (20) AC
#include#includebool isprime(int num){ int sqr=(int)sqrt(num*1.0); //【skill】判断素数只要判断到开平方就可以了 for(int i=2 ; i=l && cnt=r) break; ...
分类:其他   时间:2015-02-24 13:44:49    收藏:0  评论:0  赞:0  阅读:250
SGU[104] Little shop of flowers
Description描述You want to arrange the window of your flower shop in a most pleasant way. You haveFbunches of flowers, each being of a different kind, a...
分类:其他   时间:2015-02-24 13:44:39    收藏:0  评论:0  赞:0  阅读:213
4、记事本
using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Text;u...
分类:其他   时间:2015-02-24 13:44:19    收藏:0  评论:0  赞:0  阅读:280
iOS开发之oc--继承
面向对象的三大特性1)封装(set方法和get方法,掌握)2)继承(掌握)3)多态(理解概念即可)继承的好处:抽取了公共代码,提高了代码复用率继承的坏处:代码的耦合性强(就是类与类之间的联系)/*继承要点:1.当调用方法时,首先检测子类有没有实现这个方法,如果子类没有实现,就会调用父类的实现2.重写...
分类:移动平台   时间:2015-02-24 13:44:09    收藏:0  评论:0  赞:0  阅读:399
PAT:1007. 素数对猜想 (20) AC
#include#includebool isprime(int num) //判断素数的子函数{ int sqr=(int)sqrt(num*1.0); for(int i=2 ; i<sqr+1 ; ++i) if(num%i==0) return 0; re...
分类:其他   时间:2015-02-24 13:43:59    收藏:0  评论:0  赞:0  阅读:281
Centos 6.5安装最新版Chrome
网上很多相关到资料,不过都比较繁琐,下面给出一个链接:http://chrome.richardlloyd.org.uk/,里面有详细都说明,可以先把install_chrome.sh文件下载下来,然后执行(不需要修改该文件内容)chmod u+x install_chrome.sh./inst.....
分类:其他   时间:2015-02-24 13:43:49    收藏:0  评论:0  赞:0  阅读:201
5、listview
using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Text;u...
分类:其他   时间:2015-02-24 13:43:39    收藏:0  评论:0  赞:0  阅读:279
4.FireDAC组件快照 二
TFDUpdateSQL生成添加,删除,修改SQL语句TFDMetaInfoQuery查询数据源信息TFDEventAlerter负责处理数据库事件通知使用TFDEventAlerter类来处理数据库事件通知。FDEventAlerter1.Options.Kind := 'DBMS_ALERT';...
分类:其他   时间:2015-02-24 13:43:29    收藏:0  评论:0  赞:0  阅读:450
读《人月神话》有感
读《人月神话》有感 《人月神话》是IBM360系统之父布鲁克斯所著的经典,它为人们管理复杂项目提供了颇具洞察力的见解,既有很多发人深省的观点,也有大量的软件工程实践,读后受益匪浅,倍受启发。本书分为1...
分类:其他   时间:2015-02-24 13:43:19    收藏:0  评论:0  赞:0  阅读:271
Matrix multiplication|File I/Os|Random accesses to a file程序代写C++辅导(服务编号:cplus00045)
· c++ basics: file I/Osmechanisms to create user-defined data typesthe problem-solving processMatrix multiplication:Write a C++ program to compute the...
分类:数据库技术   时间:2015-02-24 13:43:09    收藏:0  评论:0  赞:0  阅读:580
UML中类图的符号解释
在UML的定义中,描写叙述类和对象之间的关系,包含下面几种方式:依赖(Dependency)、关联(Association)、聚合(Aggregation)、组合(Composition)、泛化(Generalization)和实现(Realization)。现分别说明例如以下:1.依赖(Depen...
分类:其他   时间:2015-02-24 13:42:59    收藏:0  评论:0  赞:0  阅读:141
Winter-1-F Number Sequence 解题报告及测试数据
Time Limit:1000MS Memory Limit:32768KBDescription?A number sequence is defined as follows:f(1) = 1, f(2) = 1, f(n) = (A * f(n - 1) + B * f(n - 2)) mod...
分类:Windows开发   时间:2015-02-24 13:42:49    收藏:0  评论:0  赞:0  阅读:396
646条   上一页 1 ... 20 21 22 23 24 ... 33 下一页
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!