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

我很菜啊,编译下面代码时出错了,帮忙看看啊!
先谢谢了!

using System; // Namespace Declaration
class OutputClass // helper class
{
string myString;
public OutputClass(string inputString) // Constructor构造器
{
myString = inputString;
}
public void printString() // Instance实例 Method
{
Console.WriteLine("{0}", myString);
}
~OutputClass() // Destructor
{
} // Some resource cleanup routines
}

class ExampleClass // Program start class
{
public static void Main() // Main begins program execution.
{
OutputClass outCl = new OutputClass("This is printed by the output class.") {} // Instance of OutputClass
outCl.printString(); // Call Output class' method
}
}

错误提示是:classes.cs(22,80): error CS1002: ; expected

搜索更多相关主题的帖子: csc 编译 myString OutputClass string 
2006-07-13 12:51
lanyong_he
Rank: 1
等 级:新手上路
帖 子:211
专家分:0
注 册:2006-7-12
收藏
得分:0 
应该怎么调整一下啊,我把OutputClass outCl = new OutputClass("This is printed by the output class.") {}  后面这俩花括号去掉了就能够正常输出了!

http://blog./lanyong_he@126/
2006-07-13 14:46
快速回复:csc 编译时的错误!
数据加载中...
 
   



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

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