1 import java.text.*; 2 public class Gxjun 3 { 4
public static void main(String atgs[]) 5 { 6 StringBuffer str= new
StringBuffer()...
分类:
编程语言 时间:
2014-06-04 18:06:21
阅读次数:
234
from apue7.6. Memory Layout of a C ProgramA
typical memory representation of C program consists of following sections.1.
Text segment2. Initialized da...
分类:
其他好文 时间:
2014-06-02 19:05:28
阅读次数:
323
1 using System; 2 using System.Collections.Generic;
3 using System.Linq; 4 using System.Text; 5 using
System.Runtime.InteropServices; 6 7 namespace .....
分类:
其他好文 时间:
2014-06-02 18:26:00
阅读次数:
185
2014-06-02 BaoXinjian1. 最简单例子(1).SQL 1 DECLARE 2 3
l_sql_text VARCHAR (1000); 4 5 TYPE c_type_wip_entity IS REF CURSOR; 6 7
c_wip_entit...
分类:
数据库 时间:
2014-06-02 14:52:28
阅读次数:
379
?通过UITextField的代理方法能够监听键盘最右下角按钮的点击1.成为UITextField的代理self.textField.delegate
= self;2.遵守UITextFieldDelegate协议,实现代理方法- (BOOL)textFieldShouldReturn:(UITe...
分类:
其他好文 时间:
2014-06-02 06:43:59
阅读次数:
207
可视化语法 Visual Format SyntaxThe following are
examples of constraints you can specify using the visual format. Note how the
text visually matches the im...
分类:
移动开发 时间:
2014-06-02 05:37:46
阅读次数:
351
在进行多栏布局时,使用bootstrap的栅格系统可以很轻松的实现效果,其实css3本身也提供了多兰布局的功能。
比如,我们在一个section标签内填充了很多内容,同时希望内容能够显示成三列,那么可以通过如下css来实现(使用chrome浏览器)。
设置分栏的数量
section {
-webkit-column-count: 3;
}
根据宽度分栏
section {
-w...
分类:
Web程序 时间:
2014-06-02 04:46:04
阅读次数:
289
<!DOCTYPEhtml>
<html>
<headlang="en">
<metacharset="UTF-8">
<title>数组</title>
<scripttype="text/javascript">
vara1=[1,4,5,7,8];
vara2=newArray(‘b‘,‘a‘,‘d‘);
a1.sort(function(i,j){
returni-j;
});
a2.sort();
consol..
分类:
编程语言 时间:
2014-06-02 04:05:42
阅读次数:
354
11Grac 由spfile创建数据库的pfile
报错如下
SQL>createpfile=‘/u01/inittips1.ora‘fromspfile;
createpfile=‘/u01/inittips1.ora‘fromspfile
*
ERRORatline1:
ORA-07391:sftopn:fopenerror,unabletoopentextfile.
再次执行
SQL>createpfile=‘/u01/inittips1.ora..
分类:
其他好文 时间:
2014-06-02 03:11:52
阅读次数:
233
与MVC3相比,差别很大: public ActionResult Main() { List
items = new List(); items.Add(new SelectListItem { Text = "Action", Value...
分类:
Web程序 时间:
2014-06-02 01:34:06
阅读次数:
338