lisnb

Results 2 issues of lisnb

你好~我在我的一个小项目里使用了结巴分词,首先对您的努力表示感谢~ 我在使用py2exe打包我的程序的时候,其他的模块都没有出现问题,打包能够成功,但在运行的时候一直显示 IOError: [Errno 2] No such file or directory: 'E:\python\links\romeo\dist\l ibrary.zip\jieba\finalseg\prob_start.py' 我单独写了一个.py文件,只有一句话: import jieba seg=jieba.cut('hello jieba') 打包,但运行的时候也是上面的那个结果。 ![image](https://f.cloud.github.com/assets/3349741/360329/71333cde-a18d-11e2-82f5-7fc3ca3ee61a.png) 我不知道您是否打包过使用了结巴的程序,如果有,您遇到过这样的问题吗? 或者您知道问题可能出现在哪吗? 谢谢啦~

您好~ 在使用toft的过程中,发现在包含了 ```toft/system/base/socket.h``` 这个头文件时,如果不依赖 ```toft/system/base:socket``` 的话,即使不使用这个头文件中定义的任何内容,比如: ```c++ main.cpp #include "toft/system/base/socket.h" int main() { return 0; } ``` 也会报 ``` sh undefined reference to `toft::Socket::Close()' ``` 这样的错误。 看起来和 ```toft::Socket``` 的析构函数是 inline...