当前位置: 编程技术>移动开发
本页文章导读:
▪设立ListView分割线 设置ListView分割线
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="wrap_content" android:layout_height="wrap_content"><ListView android:id="@+id/android:list" .........
▪ verilog 中if的应用,以及input output inout 使用 verilog 中if的使用,以及input output inout 使用
转自:http://blog.sina.com.cn/s/blog_530252a20100javv.html
if 语句只能用于过程块中,所谓过程块语句是指由initial和always语句引导的执行语句集合。除了这.........
▪ 尽可能少用终结函数 尽量少用终结函数
尽量少用终结函数,如1)用终结函数关闭一个已经被打开的文件是严重错误的,2)用终结函数释放数据库上的锁,是让OS垮掉的好办法因为JVM会延迟执行终结函数,执.........
[1]设立ListView分割线
来源: 互联网 发布时间: 2014-02-18
设置ListView分割线
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="wrap_content">
<ListView
android:id="@+id/android:list"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:divider="#FFCC00"
android:dividerHeight="4px"/>
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="wrap_content">
<ListView
android:id="@+id/android:list"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:divider="#FFCC00"
android:dividerHeight="4px"/>
</LinearLayout>
关键是这两句:
android:divider="#FFCC00"
android:dividerHeight="4px"
前一句是设置分割线的颜色,后一句是设置分割线高(即分割线的粗细)
转自:http://hi.baidu.com/huaxinchang/blog/item/8e646901c7190ac1267fb547.html
[2] verilog 中if的应用,以及input output inout 使用
来源: 互联网 发布时间: 2014-02-18
verilog 中if的使用,以及input output inout 使用
转自:http://blog.sina.com.cn/s/blog_530252a20100javv.html
if 语句只能用于过程块中,所谓过程块语句是指由initial和always语句引导的执行语句集合。除了这两块语句引导的begin end块中可以编译条件语句外,模块的其他地方都不能编写。
input 不能被定义为寄存器型,因此也不能在always中作为赋值的左端
output都可以
inout不能定义为reg型,因此只能用assign赋值。因此如果有条件,仅仅应该可以用调价赋值语句来使用。
//在调用模块进行仿真时,
输入信号要为reg 类型,输出信号要为wire
[3] 尽可能少用终结函数
来源: 互联网 发布时间: 2014-02-18
尽量少用终结函数
尽量少用终结函数,如
1)用终结函数关闭一个已经被打开的文件是严重错误的,
2)用终结函数释放数据库上的锁,是让OS垮掉的好办法
因为JVM会延迟执行终结函数,执行线程的优先级很低,
不可靠,我们不应该依赖终结函数来更新关键性的永久状态。
用try--finally结构
尽量少用终结函数,如
1)用终结函数关闭一个已经被打开的文件是严重错误的,
2)用终结函数释放数据库上的锁,是让OS垮掉的好办法
因为JVM会延迟执行终结函数,执行线程的优先级很低,
不可靠,我们不应该依赖终结函数来更新关键性的永久状态。
用try--finally结构
最新技术文章: