时间:2021-05-20
今天在编译Java程序时遇到如下问题:
No enclosing instance of type PrintListFromTailToHead is accessible. Must qualify the allocation with an enclosing instance
of type PrintListFromTailToHead (e.g. x.new A() where x is an instance of PrintListFromTailToHead).
源代码为:
public class PrintListFromTailToHead {public static void main(String[] args) {ListNode one = new ListNode(1);ListNode two = new ListNode(2);ListNode three = new ListNode(3);one.next = two;two.next = three;ArrayList<Integer> result = printListFromTailToHead(one);System.out.println("结果是:" + result);}class ListNode {public int val;public ListNode next;public ListNode() {}public ListNode(int val) {this.val = val;}}public static ArrayList<Integer> printListFromTailToHead(ListNode listNode) {Stack<Integer> stack = new Stack<Integer>();while (listNode != null) {stack.push(listNode.val);listNode = listNode.next;}ArrayList<Integer> arrayList = new ArrayList<Integer>();while (!stack.isEmpty()) {arrayList.add(stack.pop());}return arrayList;} }问题解释:
代码中,我的ListNode类是定义在PrintListFromTailToHead类中的内部类。ListNode内部类是动态的内部类,而我的main方法是static静态的。
就好比静态的方法不能调用动态的方法一样。
有两种解决办法:
第一种:
将内部类ListNode定义成静态static的类。
第二种:
将内部类ListNode在PrintListFromTailToHead类外边定义。
两种解决方法:
第一种:
public class PrintListFromTailToHead {public static void main(String[] args) {ListNode one = new ListNode(1);ListNode two = new ListNode(2);ListNode three = new ListNode(3);one.next = two;two.next = three;ArrayList<Integer> result = printListFromTailToHead(one);System.out.println("结果是:" + result);}static class ListNode {public int val;public ListNode next;public ListNode() {}public ListNode(int val) {this.val = val;}}第二种:
public class PrintListFromTailToHead {public static void main(String[] args) {ListNode one = new ListNode(1);ListNode two = new ListNode(2);ListNode three = new ListNode(3);one.next = two;two.next = three;}public static ArrayList<Integer> printListFromTailToHead(ListNode listNode) {Stack<Integer> stack = new Stack<Integer>();while (listNode != null) {stack.push(listNode.val);listNode = listNode.next;}ArrayList<Integer> arrayList = new ArrayList<Integer>();while (!stack.isEmpty()) {arrayList.add(stack.pop());}return arrayList;}}class ListNode {public int val;public ListNode next;public ListNode() {}public ListNode(int val) {this.val = val;}}以上所述是小编给大家介绍的Java解决No enclosing instance of type PrintListFromTailToHead is accessible问题的两种方案,希望对大家有所帮助。
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
Python单例模式的两种实现方法方法一importthreadingclassSingleton(object):__instance=None__lock=
本文导航SpringBoot解决跨域问题的两种方案:1、通过给方法或者类加注解的形式,@CrossOrigin。2、继承接口,重写addCorsMappings
php自动载方法有两种.第一种方案用__autoload,这个函数较简单,也较弱.但有一问题没有解决,就是在include前判断文件是否存在的问题.复制代码代码
javascript,jquery的事件中都存在事件冒泡和事件捕获的问题,下面将两种问题及其解决方案做详细总结。事件冒泡是一个从子节点向祖先节点冒泡的过程;事件
解决blur与click冲突前言:在开发中我们会经常遇到blur和click冲突的情况。下面叙述了开发中常遇到的“下拉框”的问题,并提供了两种解决方案。一、bl