从 jar 导入 java 库类时,这是否被视为静态链接?还是动态的?
假设我的lib文件夹中有jcifs-1.3.14.jar,并且我有一个从库中导入的类,并使用如下类:
import jcifs.smb.*;
NtlmPasswordAuthentication auth = new NtlmPasswordAuthentication(domain,
user,
pass);
SmbFile file = new SmbFile(path, auth);
// do some operations with the file here
当以这种方式使用库时,它是否被认为是:A)静态链接或B)动态链接或C)其他东西?