स्ट्रॉस्ट्रुप ने हाल ही में सी ++ के बारे में लोकप्रिय मिथकों को खारिज करते हुए कई पोस्ट किए हैं । पाँचवाँ मिथक है: "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 के साथ काम नहीं करेगा। गज़िप, रीडायरेक्ट आदि)। तो वोल्फ्राम एक स्पष्ट विजेता है। एक अन्य समाधान जो आकार और पठनीयता के संदर्भ में करीब आता है, वह है PowerShell (टिप्पणियों से सुधार के साथ), लेकिन इस पर अधिक ध्यान नहीं दिया गया है। मुख्यधारा की भाषाएँ ( पायथन , C # ) बहुत करीब आ गईं।
Content-Type: text/html; charset=UTF-8
करूँगा ... मैं उसे ईमेल करने वाला हूँ।
boost/asio
वहाँ जो प्रयोग किया जाता है है एक तीसरी पार्टी पुस्तकालय। मेरा मतलब है कि ऐसी भाषाएँ कैसे शामिल होंगी जो अपने मानक पुस्तकालय प्रतियोगिता के भाग के रूप में url / tcp लाने में शामिल नहीं हैं?