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();
}
}
}
为什么不行呢。在一个里面行新建类怎么调用其他项目理得呢?我上课没听啊。郁闷 展开
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();
}
}
}
为什么不行呢。在一个里面行新建类怎么调用其他项目理得呢?我上课没听啊。郁闷 展开
4个回答
展开全部
加个:Class1
class Program:Class1
{
static void Main(string[] args)
{
Program me = new Program();
me.asd();
Console.ReadKey();
}
}
这个是在你代码上加的,没有向楼上的那样,改了你的 Program →Class1
其实都一样的,哥们我还是劝你上课认真听吧,我就后悔上课没认真听的,后来被学校送去培训了半年的.NET,现在才找到入门的感觉,哎~!~!大学的生活好好珍惜吧,等工作了就没有寒暑假了。呵呵,貌似我废话有点多了,希望能帮到你~!~!~!
class Program:Class1
{
static void Main(string[] args)
{
Program me = new Program();
me.asd();
Console.ReadKey();
}
}
这个是在你代码上加的,没有向楼上的那样,改了你的 Program →Class1
其实都一样的,哥们我还是劝你上课认真听吧,我就后悔上课没认真听的,后来被学校送去培训了半年的.NET,现在才找到入门的感觉,哎~!~!大学的生活好好珍惜吧,等工作了就没有寒暑假了。呵呵,貌似我废话有点多了,希望能帮到你~!~!~!
本回答被提问者和网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
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;
};
{
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;
};
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
static void Main(string[] args)
{
Class1 me = new Class1();
me.asd();
Console.ReadKey();
}
{
Class1 me = new Class1();
me.asd();
Console.ReadKey();
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
需要using引用或在引用里添加引用
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询