码迷,mamicode.com
首页 > 2014年11月18日 > 全部分享
Base64编码
/// /// 将字符串编码为Base64字符串 /// /// /// public static string Base64Encode(string str) { byte[] barray; barray = Encoding.Default.GetBytes(str); retur...
分类:其他好文   时间:2014-11-18 13:08:01    阅读次数:205
[Bhatia.Matrix Analysis.Solutions to Exercises and Problems]ExI.2.1
For fixed basis of in $\scrH$ and $\scrK$, the matrix $A^*$ is the conjugate transpose of the matrix of $A$.
分类:其他好文   时间:2014-11-18 13:08:12    阅读次数:195
Android - 文件读写操作 总结
Android - 文件读写操作 总结 在android中的文件放在不同位置,它们的读取方式也有一些不同。 本文对android中对资源文件的读取、数据区文件的读取、SD卡文件的读取及RandomAccessFile的方式和方法进行了整理。供参考。一、资源文件的读取:apk中资源文件1) 从res....
分类:移动开发   时间:2014-11-18 13:08:29    阅读次数:260
浅谈 关于ARC循环引用得问题
这段时间在研究关于ARC得循环引用导致变量不能释放,在此先介绍一本书英文书:《Pro Multithreading and Memory Management for iOS and OS X with ARC, Grand Central Dispatch, and Blocks》(《iOS与OS...
分类:其他好文   时间:2014-11-18 13:08:57    阅读次数:176
[Bhatia.Matrix Analysis.Solutions to Exercises and Problems]ExI.2.3
(1). Let $\sed{A_\al}$ be a family of mutually commuting operators. Then, there exists a common Schur basis for $\sed{A_\al}$. In other words, there e...
分类:其他好文   时间:2014-11-18 13:08:29    阅读次数:168
Orcal中的SQL语句
Orcal中的SQL语句1.插入语句: ① insert into dept(deptno,dname,loc)values(50,'销售部','北京'); ②调用系统时间(sysdate):insert into emp(empno,ename,job,mgr,hiredate,sal,comm,...
分类:数据库   时间:2014-11-18 13:06:18    阅读次数:263
linux学习笔记——任务调度
任务调度 /etc/crontablecrontab -e 编辑任务crontab -r 终止所有任务* * * * * date > /home/date1.txt //每分钟把当前日期写到date1.txt中分 每小时第几分钟执行 0-59时 每日第几个小时执行 0-23月 每月第几天执行 1-...
分类:系统相关   时间:2014-11-18 13:08:36    阅读次数:289
自己实现jquery
(function (window) { //添加事件的方法通用所有 function addevent(evetname, fn, obj) { if (document.attachEvent) { //ie9一下 obj.attachEvent...
分类:Web程序   时间:2014-11-18 13:05:50    阅读次数:136
[Bhatia.Matrix Analysis.Solutions to Exercises and Problems]ExI.2.6
If $\sen{A}<1$, then $I-A$ is invertible, and $$\bex (I-A)^{-1}=I+A+A^2+\cdots, \eex$$ aa convergent power series. This is called the Neumann series.
分类:其他好文   时间:2014-11-18 13:07:47    阅读次数:151
【cb2】扩展硬盘
1、硬盘为sata串口2、参考 http://docs.cubieboard.org/tutorials/ct1/installation/moving_rootfs_from_nandflash_to_hard_drivePrepeare the drive for rootfsThe drive...
分类:其他好文   时间:2014-11-18 13:05:36    阅读次数:205
单词匹配二
Word Ladder II 一、看了许久的单词翻译大概知道啥意思了 Given: start ="hit" end ="cog" dict =["hot","dot","dog","lot","log"] 变换一个单词并且在字典中,然后匹配到结尾的单词。 我觉得网上看的那个变换26个...
分类:其他好文   时间:2014-11-18 12:05:17    阅读次数:170
javascript中惰性载入函数
我们都知道如果创建一个xhr对象(不会写,不怕,有百度,嘿嘿) function createXHR(){ if (typeof XMLHttpRequest != "undefined"){ return new XMLHttpRequest(); } else if (typeof ActiveXObject != "undefined")...
分类:编程语言   时间:2014-11-18 12:03:55    阅读次数:204
[3]工欲善其事必先利其器-------UML常用的图(三)
该部分主要针对UML中常用的类图,用例图,顺序图,状态图,活动图这四个部分进行简要介绍。 一.类图 1.类图用于描述系统中类的静态结构,它包括系统中每个类的结构以及类与类之间的关系的描述。 其中类的结构如下...
分类:其他好文   时间:2014-11-18 12:04:18    阅读次数:175
JavaScript onerror事件
1 onerror事件描述 使用onerror事件是一种老式的标准的在网页中捕获Javascript错误的方法 2 何时产生onerror事件 只要页面中出现脚本错误,就会产生onerror事件 3 如何使用onerror事件 利用onerror事件,就必须创...
分类:编程语言   时间:2014-11-18 12:05:35    阅读次数:129
鼠标放到a标签以后,该表鼠标的显示样式
>其中的"help"可以换成以下内容 pointer 手形 crosshair 十字形 text 文本形 wait 沙漏形 move 十字箭头形 help 问号形 e-resize 右箭头形 n-resize 上箭头形 nw-resize 左上箭头形 w-resize 左箭头形 s-resize 下...
分类:其他好文   时间:2014-11-18 12:04:03    阅读次数:230
order by 导致分页数据重复问题
此情况出现的原因是因为我们所order by的时间相同导致的 ?, ?当 order by的时间相同的时候 系统对数据的排序可能变得随机化,即一会儿这条数据在前面,一会儿这条数据在后面了 ,所以 当翻页的时候我们很容易便...
分类:其他好文   时间:2014-11-18 12:03:02    阅读次数:140
虚函数表
C++的虚函数是一种多态技术,试图用不变的代码实现可变的代码。 多态技术分为两类: 1.静态多态:函数重载和运算符重载 2.动态多态:虚函数 ----------------------------------------------------------- ##虚函...
分类:其他好文   时间:2014-11-18 12:02:41    阅读次数:148
1201条   上一页 1 ... 42 43 44 45 46 47 48 ... 71 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!