OO的ALV隐藏工具栏:***展示数据 CALL METHOD
gr_alvgrid->set_table_for_first_display EXPORTING is_variant = gs_variant
i_save ...
分类:
其他好文 时间:
2014-06-03 09:18:53
阅读次数:
316
使用echo或者printf时,可以添加输出文本的颜色设置echo -e "Maximum
\e[1;31m" $max_threads "\e[0mthreads allowed!" >>
$term_dir/summary或者printf("\033[;34mfile\033[0m")31开始代...
分类:
系统相关 时间:
2014-06-03 09:11:52
阅读次数:
306
List Comprehension1.列表推导 [i for i in range(10) if
i%2 == 0] -> [0, 2, 4, 6, 8], i也可以是一个函数,该风格比C语言思想的代码风格效率高2.enumerate
取到了序列中的序列号好内容forindex,iteminenu...
分类:
编程语言 时间:
2014-06-03 09:08:01
阅读次数:
254
(对数不等式) $$\bex \cfrac{x}{1+x}\leq \ln(1+x)\leq
x\quad(x>-1), \eex$$ 等号当且仅当 $x=0$ 时成立.
分类:
其他好文 时间:
2014-06-03 09:01:53
阅读次数:
178
echo "proxy=http://[proxy_url]:8080" >>
/etc/yum.conf
分类:
其他好文 时间:
2014-06-03 08:26:10
阅读次数:
273
昨天谈了界面的换肤问题,今天拿一个简单的界面来介绍一下怎么设计一个五脏俱全的界面,总体效果如下图(种类的图片随便找的^^):
创建一个winform项目,在上面拉进去一个bar管理器和图片列表: 在菜单栏、工具栏和状态栏中,分别加入菜单、编辑栏、按钮和静态文本:
菜单栏改名并设置好图片: ...
分类:
其他好文 时间:
2014-06-03 08:20:15
阅读次数:
437
声明:该笔记引自W3School! 元素用于提取某个选定节点的值,并把值添加到转换的输出流中:
My CD Collection Title Artist 注意:select属性的值是一个 ...
分类:
其他好文 时间:
2014-06-03 08:19:37
阅读次数:
241
MyEclipse开发内存溢出问题window --> preferences -->
MyEclipse --> servers --> Tomcat --> JDK 里面在Optional Java VM arguments:
下面加如下内容:-Xmx512m -Xms256m -XX:MaxN...
分类:
系统相关 时间:
2014-06-03 08:07:18
阅读次数:
275
Given a binary tree containing digits
from0-9only, each root-to-leaf path could represent a number.An example is the
root-to-leaf path1->2->3which rep...
分类:
其他好文 时间:
2014-05-30 16:32:52
阅读次数:
226
Given a binary tree, find its maximum depth.The
maximum depth is the number of nodes along the longest path from the root node
down to the farthest le...
分类:
其他好文 时间:
2014-05-30 15:03:42
阅读次数:
237