c#中新建的类,如果没有给它指定命名空间,那么它的命名空间是什么?另外,类外可以定义变量吗?
代码如下:usingSystem;usingSystem.Collections.Generic;usingSystem.Linq;usingSystem.Text;//...
代码如下:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
//在此可以定义变量吗?
delegate void TimeDelegate(string s);//委托类似于类吧,如果在此定义变量的话可以吗?是不是这里只能定义类、委托或者结构呢?还有没有其他呢?
class Mytime //没有指定命名空间,默认是?
{
public static void HelloTime(string s)
{
Console.WriteLine("Hello{0}!The time is {1} now",s,DateTime.Now);
}
public static void GoodbyeTime(string s)
{
Console.WriteLine("Goodbye{0}!The time is {1} now",s,DateTime.Now);
}
public void SayTime(string s)
{
Console.WriteLine("{0}!The time is {1} now",s,DateTime.Now);
}
}
class TestDelegate
{
public static void Main()
{
TimeDelegate a = new TimeDelegate(Mytime.HelloTime);
Console.WriteLine("Invoking delegate a:");
a("A");
TimeDelegate b = new TimeDelegate(Mytime.GoodbyeTime);
Console.WriteLine("Invoking delegate b:");
b("B");
TimeDelegate c = a+b;
Console.WriteLine("Invoking delegate c:");
c("C");
c-=a;
Console.WriteLine("Invoking delegate c:");
c("C");
Mytime t = new Mytime();
TimeDelegate d= new TimeDelegate(t.SayTime);
Console.WriteLine("Invoking delegate d:");
d("D");
}
} 展开
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
//在此可以定义变量吗?
delegate void TimeDelegate(string s);//委托类似于类吧,如果在此定义变量的话可以吗?是不是这里只能定义类、委托或者结构呢?还有没有其他呢?
class Mytime //没有指定命名空间,默认是?
{
public static void HelloTime(string s)
{
Console.WriteLine("Hello{0}!The time is {1} now",s,DateTime.Now);
}
public static void GoodbyeTime(string s)
{
Console.WriteLine("Goodbye{0}!The time is {1} now",s,DateTime.Now);
}
public void SayTime(string s)
{
Console.WriteLine("{0}!The time is {1} now",s,DateTime.Now);
}
}
class TestDelegate
{
public static void Main()
{
TimeDelegate a = new TimeDelegate(Mytime.HelloTime);
Console.WriteLine("Invoking delegate a:");
a("A");
TimeDelegate b = new TimeDelegate(Mytime.GoodbyeTime);
Console.WriteLine("Invoking delegate b:");
b("B");
TimeDelegate c = a+b;
Console.WriteLine("Invoking delegate c:");
c("C");
c-=a;
Console.WriteLine("Invoking delegate c:");
c("C");
Mytime t = new Mytime();
TimeDelegate d= new TimeDelegate(t.SayTime);
Console.WriteLine("Invoking delegate d:");
d("D");
}
} 展开
4个回答
展开全部
默认命名空间跟你的项目名称一样。在类外面还可以定义枚举,事件等。
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
应该是项目名吧,没有指定命名空间,其他类里是可以直接引用的
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
delegate void TimeDelegate(string s);委托本身也是一个特殊的类的定义啊, //没有指定命名空间,默认就是最外层的了
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
global::Mytime
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询