码迷,mamicode.com
首页 >  
搜索关键字:class    ( 183544个结果
codechef Row and Column Operations 题解
You are given an N × N grid initially filled by zeros. Let the rows and columns of the grid be numbered from1 to N, inclusive. There are two types of operations can be applied to the grid: RowAdd R...
分类:其他好文   时间:2014-05-06 22:35:44    阅读次数:451
C++链接库的使用,二维向量,三维向量,Ubuntu下C++测试向量库
1. 熟悉各种Linux操作命令;并编写程序,使用GNU gcc/g++进行预处理、编译和链接,观察每一阶段完成的任务。 2. 编写代码,实现二维向量和三维向量的运算: 1) 遵循软件开发标准,程序分文件书写; 2) 可以进行向量的加减和比...
分类:编程语言   时间:2014-05-06 22:28:37    阅读次数:455
【SSH2(理论+实践)】--图说Struts2的运行
Struts2的使用相较Hibernate来说简单的很,它的基本内容很少,核心也采用的是Webwork,所以在使用时只需要读WebWork了解清楚就可以很快上手开发,它的映射机制也很简单,下篇文章使用Struts2来做一个文件上传和下载的例子。...
分类:其他好文   时间:2014-05-06 22:28:04    阅读次数:433
DB Error: 1 "unrecognized token: ":""
网上找到http://blog.csdn.net/heihuifeng/article/details/6561615这篇文章 ,插入的字符串需加引号',  [_db executeUpdate:[NSString stringWithFormat:@"INSERT INTO %@  (name,img,date,isCome,msg_type,message,isNew,sendFla...
分类:数据库   时间:2014-05-06 22:13:22    阅读次数:611
保存Activity的状态
通过实现父类的方法 protected void onSaveInstanceState(Bundle outState) { super.onSaveInstanceState(outState); String str = editText.getText().toString(); outState.putString("key", "message"); } 这样就保存到了B...
分类:其他好文   时间:2014-05-06 21:46:12    阅读次数:405
.NET中的PublicKeyToken以及强命名问题
在.NET的GAC出现之前,曾经有DLL Hell的问题。这是因为当时对于共享的DLL的处理方式,是通过采用注册表的方式实现的。当我们安装一个程序A的时候,这个程序包含一个共享的DLL,那么这个DLL就会就会写入到注册表中,但是注意这里并没有写入版本信息,只是告诉你在哪个地方有一个叫做XX的DLL可以使用。当安装另外的一个程序B的时候,也包含这个共享的DLL,但是是一个更加新一些的版本,系统会发现...
分类:Web程序   时间:2014-05-06 21:44:55    阅读次数:587
Java操作IO各主要类介绍
DataInputStream和DataOutputStream 往二进制文件中读和写入java基本数据类型 public class BinaryReadWrite { private DataInputStream dis = null; private DataOutputStream dos = null; private String s_FilePath = "config\...
分类:编程语言   时间:2014-05-06 21:12:07    阅读次数:567
PHP从零单排(十八)图片处理
1.打开已经存在的图片 函数imagecreatefromjpeg()的参数即问及那...
分类:Web程序   时间:2014-05-06 19:57:43    阅读次数:470
emacs run multiple eshell buffers (more then one eshell)
(defun buffer-exists (bufname) (not (eq nil (get-buffer bufname)))) (defun make-shell (name) "Create a shell buffer named NAME." (interactive "sName: ") (if (buffer-exists "*eshell*")...
分类:其他好文   时间:2014-05-06 19:40:04    阅读次数:262
注解方式定义的spring component打jar后,扫描失败的可能原因
情况是这样的:web工程采用了ssh框架,dao和service都是通过annotation方式注入的,工程运行正常。后来把service和dao打成jar放在工程的lib目录下,问题来了,配置没改动,结果就是不能自动注入dao和service。但是如果把dao和service在spring配置文件中通过xml文件配置,这些component能找到。         搜索了一把,发现这个问题比较...
分类:编程语言   时间:2014-05-06 19:33:09    阅读次数:437
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!