whoami.m

来自「matlab7.0这本书的源代码」· M 代码 · 共 23 行

M
23
字号
function whoami% Test function to illustrate the use of the java.net package.%% Mastering MATLAB 7 Java Example 1 % Use try and catch to avoid an exception.try    me = java.net.InetAddress.getLocalHost;catch    error('Unable to get local host address.');end% Find my hostname and IP addressmyname = me.getHostName;myip = me.getHostAddress;% and print the results.disp(sprintf('My host name is %s', char(myname)));disp(sprintf('My IP address is %s', char(myip)));

⌨️ 快捷键说明

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