SendMessage Return Values The return value specifies the result of the message processing and depends on the message sent. 这个返回值就是由相应的响应消息函数的返回值. 例如: 有自定义消息:WM_USER 其响应函数: LRESULT Cexample::OnUser(WPARAM wParam, LPARAM lParam) { //…. return 0; } 则用Se…
package main import "fmt" func swap(a, b int) { a, b = b, a fmt.Printf("a = %d, b = %d\n", a, b) } func main() { a, b := , //通过一个函数交换a和b的内容 swap(a, b) //变量本身传递,值传递(站在变量角度) fmt.Printf("a = %d, b = %d\n", a, b) } 这个函数的执行结果为 a =…