- 浏览: 181733 次
- 性别:
- 来自: 武汉
最新评论
-
a564941464:
一样
Initializers -- object-c中的alloc init的解释 -
pj7670623:
幸好有~~~有道!!不然咋看的懂哦!
Initializers -- object-c中的alloc init的解释 -
higherzjm:
[flash=200,200][/flash][url][/u ...
用jdb调试Java程序
文章列表
The void operator is used in either of the following ways:
1. javascript:void (expression)2. javascript:void expression
The void operator specifies an expression to be evaluated without returning a value. expression is a JavaScript expression to evaluate. The parentheses surrounding the expression a ...
Scala is a bit of a chameleon. It makes many programming tasks refreshingly easy and at the same time contains some pretty intricate constructs that allow experts to design truly advanced typesafe libraries. This means that, depending at what piece of code you look at, Scala might look very simple or ...
使用ScrollView实现滚动效果
- 博客分类:
- android
ScrollView也是一个Layout布局,可以让它内部的数据显示不下的时候出现滚动条,要注意的是不能在ScrollView中放多个组件,如果放了多个组件,会出现如下错误:ERROR/AndroidRuntime(271): Caused by: java.lang.IllegalStateException: ScrollView can host only one direct child (ScrollView只能包裹一个直接子元素)
javac java命令
- 博客分类:
- java
假设有文件Main.java
1.javac命令编译 javac Main.java
2.java命令运行(如果没有在环境变量的设置中没有设置 classpath路径中包含点号 . ) java -classpaht . Main
python中的数据结构
- 博客分类:
- python
1.list
类似java中的list,可以修改已确定的值,通常是用方括号表示 []
2.tuple
不知道该类似什么,不可修改已有的值,通常是用圆括号表示 ()
3.字典
类似于java中map ,dictionary之类的东西,通过用花括号表示 {},键值之间用冒号 :
4.set
类似于java中的set,没有特殊的符号,通过对list进行set(list)操作可得到一个set
临睡了,遇上两个XX开黑,他娘的,两个婊子..
以下英文引用自:http://simply.liftweb.net/index-3.3.html#toc-Subsection-3.3.1
引用Once the access control is granted by SiteMap, Lift loads the view related to the URL. There are many mechanisms that Lift uses to resolve a path to a view, but the simplest is a one to one mapping between the URL path and the f ...
There are three differences to keep in mind:
First, match is an expression in Scala, i.e., it always results in a value.
Second, Scala’s alternative expressions never “fall through”into the next case.
Third, if none of the patterns match, an exception named MatchError is thrown.
...
软件项目开发流程及规范
- 博客分类:
- 软件开发
Web开发的分散性和交互性,决定了Web开发必须遵从一定的开发规范和技术约定,只有每个开发人员都按照一个共同的规范去设计、沟通、开发、测试、部署,才能保证整个开发团队协调一致的工作,从而提高开发工作效率,提升工程项目质量。
一、项目的角色划分
如果不包括前、后期的市场推广和产品销售人员,开发团队一般可以划分为项目负责人、程序员、美工三个角色。
项目负责人在我们中国习惯称为"项目经理",负责项目的人事协调、时间进度等安排,以及处理一些与项目相关的其它事宜。程序员主要负责项目的需求分析、策划、设计、代码编写、网站整合、测试、部署等环节的工作。美 ...
一个软件项目研发的设计流程是怎样的呢?以通常标准的设计方法为例,(不过笔者喜欢快速原型法)。
第一个步骤是市场调研,技术和市场要结合才能体现最大价值。
第二个步骤是需求分析,这个阶段需要出三样东西,用 ...
VLOOKUP(lookup_value,table_array,col_index_num,range_lookup)
Lookup_value 为需要在Table_array第一列中查找的数值。
可以为数值、引用或文本字符串。需要注意的是类型必须与table_array第一列的类型一致。
查找文本时,文本不区分大小写;可以使用通配符“*”、“?”。
Table_array 为需要在其中查找数据的数据表。
可以使用对区域或区域名称的引用、常数数组、计算后的内存数组。
对区域引用时,可以引用整列,excel会自动判断使用区域。
该参数的第一列必须包含查找的内容,其它 ...
public class Outer{
public static void main(String[] args) throws Exception{
new Outer().greetWorld();
}
private void greetWorld()throws Exception {
System.out.println( Inner.class.newInstance() );
}
public class Inner{
public String toString( ...
Windows Registry Editor Version 5.00
[HKEY_CLASSES_ROOT\Folder\shell\Open_DOS_Box]
@="进入DOS"
[HKEY_CLASSES_ROOT\Folder\shell\Open_DOS_Box\command]
@="cmd.exe /s /k pushd \"%V\""
将以上内容保存为.reg文件,然后双击运行。ok
class varval(x:String,var y:String,val z:String){
var xml= <book>
<title>消失的地平线</title>
<body>永不消失的地平线</body>
</book>
def xmlmode= <book>
<title>消失的地平线</title>
<body>永不消失的地平线</body>
</book&g ...
class varval(x:String,var y:String,val z:String){
}
以上代码是正确的,但在方法中声明却会报错(原因不明):
def echo(x:String,var y:String,val z:String){
}