ස්ට්රෝස්ට්රප් මෑතකදී සී ++ පිළිබඳ ජනප්රිය මිථ්යාවන් ඉවත් කරමින් පළ කරන ලද ලිපි මාලාවක් පළ කළේය . පස්වන මිථ්යාව නම්: “C ++ විශාල, සංකීර්ණ, වැඩසටහන් සඳහා පමණි”. එය ඉවත් කිරීම සඳහා ඔහු සරල C ++ වැඩසටහනක් වෙබ් පිටුවක් බාගත කර එයින් සබැඳි උපුටා ගත්තේය . මේ තියෙන්නේ:
#include <string>
#include <set>
#include <iostream>
#include <sstream>
#include <regex>
#include <boost/asio.hpp>
using namespace std;
set<string> get_strings(istream& is, regex pat)
{
set<string> res;
smatch m;
for (string s; getline(is, s);) // read a line
if (regex_search(s, m, pat))
res.insert(m[0]); // save match in set
return res;
}
void connect_to_file(iostream& s, const string& server, const string& file)
// open a connection to server and open an attach file to s
// skip headers
{
if (!s)
throw runtime_error{ "can't connect\n" };
// Request to read the file from the server:
s << "GET " << "http://" + server + "/" + file << " HTTP/1.0\r\n";
s << "Host: " << server << "\r\n";
s << "Accept: */*\r\n";
s << "Connection: close\r\n\r\n";
// Check that the response is OK:
string http_version;
unsigned int status_code;
s >> http_version >> status_code;
string status_message;
getline(s, status_message);
if (!s || http_version.substr(0, 5) != "HTTP/")
throw runtime_error{ "Invalid response\n" };
if (status_code != 200)
throw runtime_error{ "Response returned with status code" };
// Discard the response headers, which are terminated by a blank line:
string header;
while (getline(s, header) && header != "\r")
;
}
int main()
{
try {
string server = "www.stroustrup.com";
boost::asio::ip::tcp::iostream s{ server, "http" }; // make a connection
connect_to_file(s, server, "C++.html"); // check and open file
regex pat{ R"((http://)?www([./#\+-]\w*)+)" }; // URL
for (auto x : get_strings(s, pat)) // look for URLs
cout << x << '\n';
}
catch (std::exception& e) {
std::cout << "Exception: " << e.what() << "\n";
return 1;
}
}
කුඩා හා කියවිය හැකි වැඩසටහන කුමක්දැයි ස්ට්රෝස්ට්රප් පෙන්වමු .
- බාගත
http://www.stroustrup.com/C++.html
සියලුම සබැඳි ලැයිස්තුගත කරන්න:
http://www-h.eng.cam.ac.uk/help/tpl/languages/C++.html http://www.accu.org http://www.artima.co/cppsource http://www.boost.org ...
ඔබට ඕනෑම භාෂාවක් භාවිතා කළ හැකිය, නමුත් තෙවන පාර්ශවීය පුස්තකාලවලට අවසර නැත.
ජයග්රාහකයා
C ++ පිළිතුර ඡන්දයෙන් දිනා ගත් නමුත් එය රඳා පවතින්නේ අර්ධ තෙවන පාර්ශවීය පුස්තකාලයක් මත ය (එය නීති රීති වලට ඉඩ නොදේ), සහ තවත් සමීප තරඟකරුවෙකු වන බාෂ් සමඟ එක්ව හැක් කරන ලද HTTP සේවාදායකයා මත රඳා පවතී (එය HTTPS සමඟ ක්රියා නොකරනු ඇත, gzip, යළි-යොමුවීම් ආදිය). එබැවින් වුල්ෆ්රාම් පැහැදිලි ජයග්රාහකයෙකි. ප්රමාණය හා කියවීමේ හැකියාව අනුව සමීප වන තවත් විසඳුමක් වන්නේ පවර්ෂෙල් (අදහස් වලින් වැඩි දියුණු වීමක් සහිතව), නමුත් එයට වැඩි අවධානයක් ලැබී නැත. ප්රධාන ධාරාවේ භාෂා ( පයිතන් , සී # ) ද ඉතා සමීප විය.
Content-Type: text/html; charset=UTF-8
... මම ඔහුට ඊමේල් කරන්නෙමි.
boost/asio
ඉඩක් දක්වා භාවිතා වේ තෙවන පාර්ශවීය පුස්තකාලය. මා අදහස් කළේ එහි සම්මත පුස්තකාලයේ කොටසක් ලෙස url / tcp ලබා ගැනීම ඇතුළත් නොවන භාෂා තරඟ කරන්නේ කෙසේද?