编程基础:注释
外观
在接下来的几章中,您可能会在代码示例中看到很多文本,这些文本似乎除了帮助理解代码之外什么也不做。这些文本称为注释,如果您有这本书的彩色版本,您会看到这些注释以绿色突出显示。
注释 - 程序员在计算机程序源代码中可读的注释,有助于程序员理解代码,但在运行时通常被忽略
在 Visual Basic 中,所有注释都以撇号'
或单词 REM
开头。让我们看一个简单的示例
' this is a comment
dim a, b, c as string' declare variables to store names
'''' read the three names ''''
a = console.readline()
b = console.readline()
c = console.readline()
console.writeline("the names are :" & a & b & c)
注释的另一个用途是禁用不想删除但要保留的代码。通过注释掉代码,意味着您随时可以恢复它。在最终代码中保留注释掉的代码不是一个好主意,但在开发过程中这是一种非常常见的做法
'the code below now only takes one name as input instead of three
dim a as string ' declare variables to store names
', b, c as string ' this code does nothing!
'''' read the three names ''''
a = console.readline()
' b = console.readline()
' c = console.readline()
console.writeline("the names are :" & a)
' & b & c)
Python 中的注释使用井号#
字符,如下所示
# this is a comment
animal = "bunny" # initialise a variable with the string "bunny"
print(animal)
# this is another comment