| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 373 人关注过本帖
标题:错误求助....3Q
取消只看楼主 加入收藏
uukkcc
Rank: 1
等 级:新手上路
帖 子:85
专家分:0
注 册:2007-7-24
收藏
 问题点数:0 回复次数:0 
错误求助....3Q

做了一个继承类.
详情如下:
using System;
using System.Collections;
using System.Text;

namespace AcceptTest
{
class name
{
string younname;
public name(string uname) //构造赋值;
{
this.younname = uname;
}
public void shownamemsg() //方法显示值
{
Console.WriteLine("你的名字是:{0}", younname);
}
}
class where:name
{
string yourwhere;
public where(string uwhere) //构造赋值;(此处的WHERE提示错误:NAME方法没有采用"0"个参数的重载.请问是什么错?应该怎么改正?谢谢)

{

this.yourwhere = uwhere;
}
public void showwheremsg() //方法显示值
{
Console.WriteLine("你来自{0}", yourwhere);
}
}

class Program
{
static void Main(string[] args)
{
//传值调用.
where wr = new where("beijing");
name nm = new name("uukk");
wr.showwheremsg();
wr.shownamemsg();
}
}
}

2007-10-23 21:16
快速回复:错误求助....3Q
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.017309 second(s), 8 queries.
Copyright©2004-2025, BCCN.NET, All Rights Reserved