欢喜母鸡

文章
5
资源
0
加入时间
2年10月21天

SystemC/TLM: sc_fifo 的简单使用

sc_core::sc_fifo可以设置深度,默认深度为16。 explicit sc_fifo( int size_ = 16 ) : sc_prim_channel( sc_gen_unique_name( "fifo" ) ), m_data_read_event( sc_event::kernel_event, "read_event" ), m_data_written_event( sc_event:

64位ubuntu下重新编译hadoop流水账安装jdk安装maven下载hadoop源码解压编译源代码编译成果

hadoop官方网站中只提供了32位的hadoop-2.2.0.tar.gz,如果要在64位ubuntu下部署hadoop-2.2.0,就需要重新编译源码包,生成64位的部署包。建议以下操作使用root账户,避免出现权限不足的问题。安装jdk请参考文章《在ubuntu中安装jdk》。安装maven请参考文章《在ubuntu中安装maven》。下载hadoop源码

c++中的字符串常量为什么可以赋值给char*?

http://www.zhihu.com/question/20362192c++中的字符串常量为什么可以赋值给char*?比如可以写一下代码:char*str="hello";其中的"hello"不是const char*类型吗?为什么可以给char*赋值?1.C中"hello"类型是char[6],所以允许char* s...