称心香菇

文章
6
资源
1
加入时间
2年10月21天

常见文件类型的注释方式总结(CMakeLists.txt、yaml、cfg、launch和xml等文件)

1、CMakeLists.txt文件的注释 (1)单行注释直接在行首添加#号即可; (2)块注释符号:#[[与]]结合使用,例如:#[[add_executable(${PROJECT_NAME} src/main.cpp)target_link_libraries(${PROJECT_NAME} ${catkin_LIBRARIES})]]2、yaml文件注释 行首添加#号进行注释,yaml文件不支持多行注释,如果需要多行注释,就在每行添加#即可。3...

59. Spiral Matrix II Leetcode Python

Given an integer n, generate a square matrix filled with elements from 1 to n2 in spiral order.For example,Given n = 3,You should return the following matrix:[ [ 1, 2, 3 ], [ 8, 9,

java ListIterator迭代器

ListIterator迭代器的概述ListIterator 继承自 Iterator 接口(关于 Iterator 的介绍请看博客),在 Iterator 的基础上增加了 6 个方法:ListIterator与Iterator接口不同,它不仅可以向后迭代,它还可以向前迭代。ListIterator相对Iterator增加了如下几个方法:void hasPrevious()...