gpt4 book ai didi

c# - 找不到类型或命名空间名称 'boolean'

转载 作者:太空宇宙 更新时间:2023-11-03 18:12:52 25 4
gpt4 key购买 nike

对于我家庭作业中的以下代码,显示错误 The type or namespace name 'boolean' could not be found

          class LinkedList
{
private Node first;
public LinkedList()
{
first = null;
}
public boolean isEmpty()
{
return (first == null);
}
public void insert(int val)//inserts at beginning of list
{
Node newNode = new Node(val);
newNode.next = first;
first = newNode;
}
public Node delete()//deletes at beginning of list
{
Node temp = first;
first = first.next;
return temp;
}

我在互联网上的每个地方都发现了几乎相似的问题,但并不完全是 bool 值,有人请帮帮我。顺便说一句,我正在学习 c# 3-4 说。

最佳答案

它是 bool(小写 b)或 C# 中的 Boolean。考虑使用 bool,因为它更短并且与其他语言(Java 除外...)更一致。

The bool keyword is an alias of System.Boolean.

来源:http://msdn.microsoft.com/en-us/library/c8f5xwh7%28VS.71%29.aspx

关于c# - 找不到类型或命名空间名称 'boolean',我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11495361/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com