回 帖 发 新 帖 刷新版面

主题:没有见过的C++语法

突然遇到过没有见过的C++语法,那位大牛讲解一下。
[code=c]
#include <iostream>
#include <algorithm>

using namespace std;

int main()
{
    int A1[] = {3, 1, 4, 1, 5, 9, 3};
    int A2[] = {3, 1, 4, 2, 8, 5, 7};
    const int N = sizeof(A1) / sizeof(int);
    pair<int *, int *>result = mismatch(A1, A1+N, A2);
    cout << result.first-A1 << endl;
    cout << *(result.first) << ", " << *(result.second) << endl;
    return 0;
}
[/code]
谁知道 result.first-A1是什么语法?

回复列表 (共3个回复)

沙发

减号 你也不认识了?

板凳

The ace feel when drag strange, hear voice should be thorn blunt armor, can be heavy infantry didn't also heard that [url=http://www.louboutinoutletshoes-us.com/]louboutin outlet[/url] even the crotch are metal protection board of! If in the modern can also think is the mines armor, can the warrior in the magic game legs equipment a block of armor that do? 
Although feel strange, but this player reaction still don't mess, the blade of deviation of a chance to slip out [url=http://www.louboutinoutletshoes-us.com/]christian louboutin shoes[/url] of the two distance, scroll he heard a noise behind in, apparently just he lay position has been attacked. If it weren't for dodging his has been hit in time [url=http://www.justredbottomshoes.com/]red sole shoes[/url]
FASDW64E
 now....... Get out after a few meters the ace to jump, just in the underground Angle is bad, now after he found out that distance himself the target of very strange. The [url=http://www.justredbottomshoes.com/]red bottom heels[/url] opponents more than two meters in height, the whole body heavy plate armour, see protecting shoulder shoulder edge I found the plate armour thickness foot three or four centimeters, are going to catch up with a tank. 
The poor player just [url=http://www.louboutinoutletshoes-us.com/]christian louboutin outlet[/url] observe the opponents will find each other waving a knife nearly two meters long, width almost caught up with a single hand of light fly axe swept the epee. The terror of big sword in the air wind brought out the report of air blare, such a great sword can as the axe kind of heavy weapon to see, even if it didn't turn back, was a blow to the affirmation also is [url=http://www.louboutinoutletshoes-us.com/]christian louboutin sale[/url] wounded or dead. 
Ace a jump, heavy jian sweep from under him, almost hit him. As he satisfied oneself of fast reaction, a door suddenly from top press down, crashed the master's both man and armor made into a sandwich people the pie. The player back to the resurrection in strange point where the hell ran out the door, but he didn't know he completely want to wrong direction. What is it that door! The door was mistaken for what is clearly a two meters tall meters wide steel shield. That is one of the golem standard equipment, just because the golem itself is [url=http://www.justredbottomshoes.com/]red bottom shoes[/url] bigger, so he took of shield really basic door plank almost, and that's exactly what the shield than the average person of the home, the door still slightly big. Is this kind of abnormal condition golem strength to take a door plank is the size of five centimeters thick the whole steel shield when beat take a person, usually the army only legion with shield wall to and the shield biyibi size. 
In this player was less than 10 seconds after the kill another five survivors also has been golem off, mostly because the cause of death to the power of the golem does not understand and suffer the cause. Such as there is a guy in the golem chop the unexpectedly took up his axe block, was he the heavy weapon block effect should be good, but I take this batch of new type is the golem, just before you update the power system, the results a sword down even with an axe to chop the others, the guy didn't know why to death didn't block. 

3 楼

result.first-A1
result.first 第一个不相同成员的地址
result.first-A1就是第一个不相同成员的地址和首地址的差,就是第几个整数开始不相同了!

我来回复

您尚未登录,请登录后再回复。点此登录或注册