现有以下程序代码: Private sub Form_click( ) Static s as integer s=s+1 text4, text = str(s) End sub 单击窗体4次后,文本框中的内容是( )。
【正确答案】 A
【答案解析】解析:s是静态变量,过程运行完后不释放。