C ++ - 带有函数指针的哈希表

时间:2017-11-03 11:22:28

标签: c++ function-pointers

这是我在本网站上的第一篇文章。我正在一个用C ++编写哈希表的项目。我的函数指针有问题。

我有一个散列表,其中包含一些学生(由他们的学生编号确定)。我必须使用函数指针在参数中传递哈希。

我的代码位于:

   package com.ems.dao;
   import java.util.List;
   import org.hibernate.Session;
   import org.hibernate.SessionFactory;
   import org.springframework.beans.factory.annotation.Autowired;
   import org.springframework.stereotype.Repository;
   import com.ems.DO.Speaker;

   @Repository
   public class SpeakerDaoImpl implements SpeakerDao{

   @Autowired
   private SessionFactory sessionFactory;


public void setSessionFactory(SessionFactory sessionFactory) {
       this.sessionFactory = sessionFactory;
}

 public boolean add(Speaker s) {
 boolean status=false;
 Session session = sessionFactory.getSessionFactory().openSession();
 session.save(s);
 System.out.println(s.getAch()+" "+s.getMail()+" "+s.getSpeakerId());
 System.out.println("one record inserted");
 return true;
   } 
 }

我的提示给了我这个错误:

//file main.cpp
Table t1;
unsigned int(Table::* ptrHash)(unsigned int);
ptrHash = &Table::hash;
t1.insertStudent(11507461, 20, ptrHash);

// file Table.cpp
void Table::insertStudent(unsigned int numberStudent, unsigned int (*f)(unsigned int)) {...}
unsigned int Table::hash(unsigned int cleEtu) {...}

//file Table.h
void insertStudent(unsigned int numberStudent, unsigned int (*f)(unsigned int));
unsigned int hash(unsigned int numberStudent);

我知道它并不相同,但我不知道如何解决它。我尝试了很多方法,但都没有工作。

如果有人可以帮助我,它会救我!

1 个答案:

答案 0 :(得分:2)

问题的原因是指向普通函数的指针和指向成员函数的指针之间存在差异。函数insertStudent接受一个指向普通函数的指针,但是你用一个指向Table类的成员函数的指针来调用它。

就我个人而言,在这种情况下我根本不会使用函数指针 insertStudent在哈希函数上参数化。这将允许散列函数成为具有函数调用运算符的任何对象,该运算符接受int并返回int

如果我的老师强迫我使用函数指针,我会将散列函数作为Table类的静态成员函数,以使其保持接近。静态和非静态成员函数之间存在根本区别。静态成员函数不会在特定对象上调用,因此与正常函数关系更密切。