java ,为啥无法从静态上下文中引用非静态方法

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了java ,为啥无法从静态上下文中引用非静态方法相关的知识,希望对你有一定的参考价值。

public class TextLinearSearch
int[] list=1,4,2,5,-3,6,2;
public static void main(String args[])
linearSearch(list,-3);

private void linearSearch(int[] list,int key)
for(int i=0;i<list.length;i++)
if(key==list[i])
System.out.println(i);

System.out.println("There is no right number in the list");

因为编译器不知道那个方法在哪,两种解决办法,一种加static修饰,这样在程序运行时就会被加载入内存,另一种创建对象,然后调用对象的方法,如
public static void main(String args[])
TextLinerSearch t = new TextLinerSearch ();
t.linearSearch(list,-3);
参考技术A 静态方法随着类的加载而加载 然后存到内存的功用方法区, 非静态的方法是要先实例化后才生成的.所以linearSearch(list,-3);就会出错追问

可以要你的qq吗?以后不懂的问题可以向你请教

参考技术B 你把这个方法也改为静态的。
private static void linearSearch(int[] list,int key)
for(int i=0;i<list.length;i++)
if(key==list[i])
System.out.println(i);

System.out.println("There is no right number in the list");
参考技术C 在int前面加上static就行了。 参考技术D 由于tostring()方法是非静态的,故不能直接通过类名引用,上面的这句代码:
system.out.println(course.tostring());
改为
system.out.println(cs.tostring());
即可。
有问题欢迎提问,满意请采纳,谢谢!

无法从静态上下文中引用非静态方法 getSocketFactory [重复]

【中文标题】无法从静态上下文中引用非静态方法 getSocketFactory [重复]【英文标题】:Non-static method getSocketFactory cannot be referenced from a static context [duplicate] 【发布时间】:2021-09-29 08:33:46 【问题描述】:

我的代码给出了上述错误,因为无法从静态上下文引用非静态方法 getSocketFactory。将 trustAllHost 更改为非静态也没有起作用。

WebSocketClient(URI serverUri, String topic, Map<String, String> headers) 
        super(serverUri, headers);
        if (serverUri.toString().contains("wss://"))
            trustAllHosts(this);
        this.topic = topic;
    

    static void trustAllHosts(MCPWebSocketClient appClient) 
        TrustManager[] trustAllCerts = new TrustManager[]new X509TrustManager() 
            public java.security.cert.X509Certificate[] getAcceptedIssuers() 
                return new java.security.cert.X509Certificate[];
            

            @Override
            public void checkClientTrusted(X509Certificate[] arg0, String arg1) throws CertificateException 
                // TODO Auto-generated method stub

            

            @Override
            public void checkServerTrusted(X509Certificate[] arg0, String arg1) throws CertificateException 
                // TODO Auto-generated method stub

            
        ;

        try 
            SSLContext sc = SSLContext.getInstance("TLS");
            sc.init(null, trustAllCerts, new java.security.SecureRandom());
            final SSLSocketFactory factory = SSLContext.getSocketFactory(); //this line
            appClient.setSocket(factory.createSocket());
            appClient.connectBlocking();
         catch (Exception e) 
            e.printStackTrace();
        
    

【问题讨论】:

【参考方案1】:

getSocketFactory() 是一个非静态方法。您需要一个 SSLContext 对象来调用 getSocketFactory() 方法。因为您已经创建了 SSLContext 的对象 所以调用

sc.getSocketFactory();

而不是

SSLContext.getSocketFactory();

【讨论】:

以上是关于java ,为啥无法从静态上下文中引用非静态方法的主要内容,如果未能解决你的问题,请参考以下文章

无法从静态上下文中引用非静态方法 getSocketFactory [重复]

"无法从静态上下文中引用非静态变量,非静态方法"

无法从静态上下文引用非静态方法

不能从 java 8 流中的静态上下文引用非静态方法

非静态变量 this 不能从 main 方法中的静态上下文中引用

如何在ios framework中引用其他静态库