解决方案
30
怎么做?你都没说清,谁知道怎么做
建个数据库表 吧
……继续阅读 »
9年前 (2016-06-09) 919浏览
0个赞
1.求一段完整的 代码,内容是,C++通过http访问url地址,给这个url传递数据(这是第一步),
2,接着上面的步骤来,C++给url 传递数据后,这个url会给本人发送数据(这个是已经有人写好了的),我们要接收这个url返回来的数据
3,推荐一下C++ http通信相关资料,书籍,文档
解决方案
5
《http权威指南》
5
curl库使用手册
1……继续阅读 »
9年前 (2016-06-09) 1235浏览
0个赞
void Test(const wchar_t *test1)
{
wchar_t *newc = new wchar_t[wcslen(test1)];
wcsncpy_s(newc, wcslen(newc), test1, wcslen(test1));
//wcsncpy(newc, test1, wcslen(test1));
delet……继续阅读 »
9年前 (2016-06-09) 2040浏览
0个赞
环境:vs2015,32位编译环境。
现象:
public:
int a;
int b;
virtual void fun() { cout << "fdsa"; }
Test(int temp1 = 0, int temp2 = 0)
{
a = temp1;
b = temp2;
}
int getA()
{
re……继续阅读 »
9年前 (2016-06-09) 1166浏览
0个赞
谁能帮本人看下如下代码为什么编译不过,想不清楚
解决方案
40
这是指向类方法的指针.要这样改:
(it->second)(tag); 改为
(this->*(it->second))(tag);
……继续阅读 »
9年前 (2016-06-09) 1292浏览
0个赞
本人在VC6.0中编写了这个程序
#include<iostream>
#include<math.h>
using namespace std;
int main()
{
double a=-0.0000065;
cout<<sizeof(a)<<endl;
cout<<abs(a)<<……继续阅读 »
9年前 (2016-06-09) 2315浏览
0个赞
#include <iostream>
#include <vector>
using namespace std;
int Add(const int &v1,const int &v2){return v1+v2;}
int Sub(const int &v1,const int &v2){retu……继续阅读 »
9年前 (2016-06-09) 945浏览
0个赞
android 使用pageview fragement 实现不同城市的切换,想要在切换过程中不论页面上次且过去时在哪里。本人在且过去时都是在顶部。大家有什么方法吗?
解决方案
20
要看你顶部是什么控件。普通的SETFOCUS.
LISTVIEW这种的,选择第一个相似这种。
……继续阅读 »
9年前 (2016-06-09) 882浏览
0个赞
RT
搜索到设备后,获取了名称、地址一类的东西,
问一下怎么和选中的蓝牙设备进行配对?
网上的都看不懂,没细讲这步
解决方案
20
你是说蓝牙的扫描连接功能么,搜索到设备后连接指定设备,可以使用BluetoothDevice进行连接,也可以直接使用设备名称或mac地址连接设备,具体操作细节可参考http://blog.csdn.net/xiaoyaoyou1……继续阅读 »
9年前 (2016-06-09) 924浏览
0个赞