⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 set.n

📁 linux系统下的音频通信
💻 N
字号:
'\"'\" Copyright (c) 1993 The Regents of the University of California.'\" Copyright (c) 1994-1996 Sun Microsystems, Inc.'\"'\" See the file "license.terms" for information on usage and redistribution'\" of this file, and for a DISCLAIMER OF ALL WARRANTIES.'\" '\" SCCS: @(#) set.n 1.6 97/05/18 15:56:26'\" .so man.macros.TH set n "" Tcl "Tcl Built-In Commands".BS'\" Note:  do not modify the .SH NAME line immediately below!.SH NAMEset \- Read and write variables.SH SYNOPSIS\fBset \fIvarName \fR?\fIvalue\fR?.BE.SH DESCRIPTION.PPReturns the value of variable \fIvarName\fR.If \fIvalue\fR is specified, then setthe value of \fIvarName\fR to \fIvalue\fR, creating a new variableif one doesn't already exist, and return its value.If \fIvarName\fR contains an open parenthesis and ends with aclose parenthesis, then it refers to an array element:  the charactersbefore the first open parenthesis are the name of the array,and the characters between the parentheses are the index within the array.Otherwise \fIvarName\fR refers to a scalar variable.Normally, \fIvarName\fR is unqualified(does not include the names of any containing namespaces),and the variable of that name in the current namespace is read or written.If \fIvarName\fR includes namespace qualifiers(in the array name if it refers to an array element),the variable in the specified namespace is read or written..PPIf no procedure is active,then \fIvarName\fR refers to a namespace variable(global variable if the current namespace is the global namespace).If a procedure is active, then \fIvarName\fR refers to a parameteror local variable of the procedure unless the \fBglobal\fR commandwas invoked to declare \fIvarName\fR to be global,or unless a \fBvariable\fR commandwas invoked to declare \fIvarName\fR to be a namespace variable..SH KEYWORDSread, write, variable

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -