上次我做import java.util.Iterator;
import java.util.NoSuchElementException;
public class Node implements Iterable<Node> {
class NodeIterator implements Iterator<Node> {
private Node node;
public NodeIterator(Node node) {
this.node = node;
}
public boolean hasNext() {
return node != null;
}
public Node next() {
if (!hasNext())
throw new NoSuchElementException();
Node rtn = node;
node = node.next;
return rtn;
}
}
private int value;
private Node next;
public Node(int value, Node next) {
this.value = value;
this.next = next;
}
@Override
public Iterator<Node> iterator() {
return new NodeIterator(this);
}
public static void main(String[] args) {
Node node4 = new Node(1, null);
Node node3 = new Node(1, node4);
Node node2 = new Node(1, node3);
Node node1 = new Node(1, node2);
int sum = 0;
for (Node node : node1) {
sum += node.value;
}
System.out.println(sum);
}
}
时,我可以发誓这些选项,但现在我看到了Blank App..
,但无论如何,当我使用Cross-Platform App (Xamarin.Forms or Native)
创建新项目时,我得到一个Cross-Platform App (Xamarin.Forms or Native)
,然后是一个Creating Project
对话框,它将无限期地挂在那里。我甚至已经放了将近一整天,但它仍然没有创建项目。我的目标是创建一个空白的Xamarin应用程序,它也使用表单和平台级代码。这是我试图创造的吗?如果是这样,我怎么能让它不挂。如果没有,我需要做什么来创建空白的xamarin应用程序,它做了我上面描述的?
此时,github或任何指向空白应用程序的链接都可以满足。但是,无论提供什么帮助,我们都非常感激。它的屏幕截图在下面没有响应。
答案 0 :(得分:0)
我有同样的问题,我重新安装了旧版本的Xamarin(2017年1月27日),现在工作正常。 由于我对最新版本有另一个问题,这个版本对我来说很好。