c#怎样调用类

usingSystem;usingSystem.Collections.Generic;usingSystem.Linq;usingSystem.Text;namespa... using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace ConsoleApplication2
{
class Class1
{
public int asd()
{
Console.WriteLine("wanfoheguobai");
return 0;
}
}
}
progrom里面
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace ConsoleApplication2
{
class Program
{

static void Main(string[] args)
{
Program me = new Program();
me.asd();
Console.ReadKey();
}
}
}
为什么不行呢。在一个里面行新建类怎么调用其他项目理得呢?我上课没听啊。郁闷
展开
 我来答
百度网友6d3d2c1
推荐于2018-03-14
知道答主
回答量:66
采纳率:0%
帮助的人:51.7万
展开全部
加个:Class1
class Program:Class1
{
static void Main(string[] args)
{
Program me = new Program();
me.asd();
Console.ReadKey();
}
}
这个是在你代码上加的,没有向楼上的那样,改了你的 Program →Class1
其实都一样的,哥们我还是劝你上课认真听吧,我就后悔上课没认真听的,后来被学校送去培训了半年的.NET,现在才找到入门的感觉,哎~!~!大学的生活好好珍惜吧,等工作了就没有寒暑假了。呵呵,貌似我废话有点多了,希望能帮到你~!~!~!
本回答被提问者和网友采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
du瓶邪
推荐于2016-05-05 · TA获得超过2.4万个赞
知道大有可为答主
回答量:1.7万
采纳率:100%
帮助的人:3021万
展开全部
  class BM
{
public:
bloom_filter(unsigned int tbl_size)
{
table_size = tbl_size;
hash_table = new unsigned char[table_size];
for(std::size_t i = 0; i < table_size; ++i) hash_table[i] = 0;
}

void insert(char* key)
{
for(std::size_t i = 0; i < hash_function.size(); i++)
{
unsigned int hash = hash_function[i](key,3) % (table_size * char_size);
hash_table[hash / char_size] |= bit_mask[hash % char_size];
}
}
/* bool contains(const std::string& key)*/
bool contains(char* key)
{
for(std::size_t i = 0; i < hash_function.size(); i++)
{
unsigned int hash = hash_function[i](key,3) % (table_size * char_size);
unsigned int bit = hash % char_size;
if ((hash_table[hash / char_size] & bit_mask[bit]) != bit_mask[bit])
{
return false;
}
}
return true;
}

private:
std::vector < hash_function > hash_function;
unsigned char* hash_table;
unsigned int table_size;
};
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
惠雅懿4y
2012-05-03 · 超过12用户采纳过TA的回答
知道答主
回答量:25
采纳率:0%
帮助的人:28.4万
展开全部
static void Main(string[] args)
{
Class1 me = new Class1();
me.asd();
Console.ReadKey();
}
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
百度网友9272c96
2012-05-03 · 超过40用户采纳过TA的回答
知道小有建树答主
回答量:129
采纳率:0%
帮助的人:72.9万
展开全部
需要using引用或在引用里添加引用
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(2)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式