{"id":185,"date":"2012-12-21T15:25:46","date_gmt":"2012-12-21T15:25:46","guid":{"rendered":"http:\/\/ellignostage.test\/?p=185"},"modified":"2021-05-26T13:08:37","modified_gmt":"2021-05-26T18:08:37","slug":"tips-avec-tableau","status":"publish","type":"post","link":"https:\/\/elligno.com\/fr\/tips-avec-tableau\/","title":{"rendered":"Boost et STL"},"content":{"rendered":"\n<p><span style=\"font-family: verdana, geneva;\"><strong><span style=\"font-size: medium;\">Librairie Boost<\/span><\/strong><\/span><\/p>\n\n\n\n<p><span style=\"font-family: verdana, geneva;\">Nous commen\u00e7ons avec une introduction \u00e0 la STL (Standard Template Library), ce que l&rsquo;on appelle collection en C++. C&rsquo;est le pain et le beurre du programmeur. La STL offre un ensemble de container et d&rsquo;algorithmes. Le c\u0153ur de la STL est le concept <b><i>iterator<\/i><\/b> qui permet de traverser la collection. La STL a \u00e9t\u00e9 design<span style=\"font-family: Verdana;\">\u00e9<\/span> pour \u00eatre utilis<span style=\"font-family: Verdana;\">\u00e9<\/span> avec un style de programmation appel\u00e9&nbsp;\u00ab<i>programmation g\u00e9n\u00e9rique<\/i>\u00bb mieux connu sous le nom de Template en C++. Ceci permet de traiter le type de data du container de fa\u00e7on transparente.<\/span><\/p>\n\n\n\n<p><span style=\"font-family: verdana, geneva;\">Ci-dessous un exemple simple de l&rsquo;utilisation de la STL et de Boost. Nous avons deux functions qui permettent d&rsquo;imprimer le contenu d&rsquo;une collection<\/span><\/p>\n\n\n\n<figure class=\"wp-block-table\"><table><tbody><tr><td><span style=\"font-family: verdana, geneva;\"><span style=\"color: #0000ff; font-size: small;\"><span style=\"color: #0000ff; font-size: small;\">template<\/span><\/span><span style=\"font-size: small;\">&lt;<\/span><span style=\"color: #0000ff; font-size: small;\"><span style=\"color: #0000ff; font-size: small;\">typename<\/span><\/span><span style=\"color: #010001; font-size: small;\"><span style=\"color: #010001; font-size: small;\">Range<\/span><\/span><span style=\"font-size: small;\">&gt;<\/span><\/span><span style=\"font-family: verdana, geneva;\"><span style=\"color: #0000ff; font-size: small;\"><span style=\"color: #0000ff; font-size: small;\">void <\/span><\/span><span style=\"color: #010001; font-size: small;\"><span style=\"color: #010001; font-size: small;\">printRange<\/span><\/span><span style=\"font-size: small;\">( <\/span><span style=\"color: #0000ff; font-size: small;\"><span style=\"color: #0000ff; font-size: small;\">const <\/span><\/span><span style=\"color: #010001; font-size: small;\"><span style=\"color: #010001; font-size: small;\">Range<\/span><\/span><span style=\"font-size: small;\">&amp; <\/span><span style=\"color: #010001; font-size: small;\"><span style=\"color: #010001; font-size: small;\">aRange<\/span><\/span><span style=\"font-size: small;\">)<\/span><\/span><span style=\"font-family: verdana, geneva;\">{<\/span>\n<p>&nbsp;<\/p>\n<p><span style=\"font-family: verdana, geneva;\"><span style=\"color: #010001; font-size: small;\"><span style=\"color: #010001; font-size: small;\">std<\/span><\/span><span style=\"font-size: small;\">::<\/span><span style=\"color: #010001; font-size: small;\"><span style=\"color: #010001; font-size: small;\">cout<\/span><\/span><span style=\"font-size: small;\"> &lt;&lt; <\/span><span style=\"color: #a31515; font-size: small;\"><span style=\"color: #a31515; font-size: small;\">\u00ab\u00a0We are printing the range\\n\u00a0\u00bb<\/span><\/span><span style=\"font-size: small;\">;<\/span><\/span><\/p>\n<p><span style=\"font-family: verdana, geneva;\"><span style=\"color: #0000ff; font-size: small;\"><span style=\"color: #0000ff; font-size: small;\">typedef <\/span><\/span><span style=\"color: #010001; font-size: small;\"><span style=\"color: #010001; font-size: small;\">boost<\/span><\/span><span style=\"font-size: small;\">::<\/span><span style=\"color: #010001; font-size: small;\"><span style=\"color: #010001; font-size: small;\">range_iterator<\/span><\/span><span style=\"font-size: small;\">&lt;<\/span><span style=\"color: #010001; font-size: small;\"><span style=\"color: #010001; font-size: small;\">Range<\/span><\/span><span style=\"font-size: small;\">&gt;::<\/span><span style=\"color: #010001; font-size: small;\"><span style=\"color: #010001; font-size: small;\">type <\/span><\/span><span style=\"color: #010001; font-size: small;\"><span style=\"color: #010001; font-size: small;\">iter_type<\/span><\/span><span style=\"font-size: small;\">;<\/span><\/span><\/p>\n<p><span style=\"font-family: verdana, geneva;\"><span style=\"color: #0000ff; font-size: small;\"><span style=\"color: #0000ff; font-size: small;\">typedef <\/span><\/span><span style=\"color: #010001; font-size: small;\"><span style=\"color: #010001; font-size: small;\">std<\/span><\/span><span style=\"font-size: small;\">::<\/span><span style=\"color: #010001; font-size: small;\"><span style=\"color: #010001; font-size: small;\">iterator_traits<\/span><\/span><span style=\"font-size: small;\">&lt;<\/span><span style=\"color: #010001; font-size: small;\"><span style=\"color: #010001; font-size: small;\">iter_type<\/span><\/span><span style=\"font-size: small;\">&gt;::<\/span><span style=\"color: #010001; font-size: small;\"><span style=\"color: #010001; font-size: small;\">value_type <\/span><\/span><span style=\"color: #010001; font-size: small;\"><span style=\"color: #010001; font-size: small;\">value_type<\/span><\/span><span style=\"font-size: small;\">;<\/span><\/span><\/p>\n<p><span style=\"font-family: verdana, geneva;\"><span style=\"color: #010001; font-size: small;\"><span style=\"color: #010001; font-size: small;\">std<\/span><\/span><span style=\"font-size: small;\">::<\/span><span style=\"color: #010001; font-size: small;\"><span style=\"color: #010001; font-size: small;\">copy<\/span><\/span><span style=\"font-size: small;\">( <\/span><span style=\"color: #010001; font-size: small;\"><span style=\"color: #010001; font-size: small;\">boost<\/span><\/span><span style=\"font-size: small;\">::<\/span><span style=\"color: #010001; font-size: small;\"><span style=\"color: #010001; font-size: small;\">begin<\/span><\/span><span style=\"font-size: small;\">(<\/span><span style=\"color: #010001; font-size: small;\"><span style=\"color: #010001; font-size: small;\">aRange<\/span><\/span><span style=\"font-size: small;\">), <\/span><span style=\"color: #010001; font-size: small;\"><span style=\"color: #010001; font-size: small;\">boost<\/span><\/span><span style=\"font-size: small;\">::<\/span><span style=\"color: #010001; font-size: small;\"><span style=\"color: #010001; font-size: small;\">end<\/span><\/span><span style=\"font-size: small;\">(<\/span><span style=\"color: #010001; font-size: small;\"><span style=\"color: #010001; font-size: small;\">aRange<\/span><\/span><span style=\"font-size: small;\">),<\/span><\/span><\/p>\n<p><span style=\"font-family: verdana, geneva;\"><span style=\"color: #010001; font-size: small;\"><span style=\"color: #010001; font-size: small;\">std<\/span><\/span><span style=\"font-size: small;\">::<\/span><span style=\"color: #010001; font-size: small;\"><span style=\"color: #010001; font-size: small;\">ostream_iterator<\/span><\/span><span style=\"font-size: small;\">&lt;<\/span><span style=\"color: #010001; font-size: small;\"><span style=\"color: #010001; font-size: small;\">value_type<\/span><\/span><span style=\"font-size: small;\">&gt;(<\/span><span style=\"color: #010001; font-size: small;\"><span style=\"color: #010001; font-size: small;\">std<\/span><\/span><span style=\"font-size: small;\">::<\/span><span style=\"color: #010001; font-size: small;\"><span style=\"color: #010001; font-size: small;\">cout<\/span><\/span><span style=\"font-size: small;\">,<\/span><span style=\"color: #a31515; font-size: small;\"><span style=\"color: #a31515; font-size: small;\">\u00ab\u00a0\\n\u00a0\u00bb<\/span><\/span><span style=\"font-size: small;\">));<\/span><\/span><\/p>\n<p><span style=\"font-family: verdana, geneva;\">}<\/span><\/p>\n<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p><span style=\"font-family: verdana, geneva;\">La meme fonction mais en utilisant la Standard template Library (STL)<\/span><\/p>\n\n\n\n<figure class=\"wp-block-table\"><table><tbody><tr><td><span style=\"font-family: verdana, geneva;\"><span style=\"color: #0000ff; font-size: small;\"><span style=\"color: #0000ff; font-size: small;\">template<\/span><\/span><span style=\"font-size: small;\">&lt;<\/span><span style=\"color: #0000ff; font-size: small;\"><span style=\"color: #0000ff; font-size: small;\">typename<\/span><\/span><span style=\"color: #010001; font-size: small;\"><span style=\"color: #010001; font-size: small;\">CONT<\/span><\/span><span style=\"font-size: small;\">&gt; <\/span><span style=\"color: #008000; font-size: small;\"><span style=\"color: #008000; font-size: small;\">\/\/ container<\/span><\/span><\/span><span style=\"font-family: verdana, geneva;\"><span style=\"color: #0000ff; font-size: small;\"><span style=\"color: #0000ff; font-size: small;\">void <\/span><\/span><span style=\"color: #010001; font-size: small;\"><span style=\"color: #010001; font-size: small;\">print_container<\/span><\/span><span style=\"font-size: small;\">( <\/span><span style=\"color: #0000ff; font-size: small;\"><span style=\"color: #0000ff; font-size: small;\">const<\/span><\/span><span style=\"color: #010001; font-size: small;\"><span style=\"color: #010001; font-size: small;\">CONT<\/span><\/span><span style=\"font-size: small;\">&amp; <\/span><span style=\"color: #010001; font-size: small;\"><span style=\"color: #010001; font-size: small;\">aCont2Print<\/span><\/span><span style=\"font-size: small;\">)<\/span><\/span><span style=\"font-family: verdana, geneva;\">{<\/span>\n<p>&nbsp;<\/p>\n<p><span style=\"color: #008000; font-size: small; font-family: verdana, geneva;\"><span style=\"color: #008000; font-size: small;\">\/\/ typename because CONT is a argument template <\/span><\/span><\/p>\n<p><span style=\"color: #008000; font-size: small; font-family: verdana, geneva;\"><span style=\"color: #008000; font-size: small;\">\/\/ we have to give an hint to the compiler<\/span><\/span><\/p>\n<p><span style=\"font-family: verdana, geneva;\"><span style=\"color: #0000ff; font-size: small;\"><span style=\"color: #0000ff; font-size: small;\">typedef<\/span><\/span><span style=\"color: #0000ff; font-size: small;\"><span style=\"color: #0000ff; font-size: small;\">typename<\/span><\/span><span style=\"color: #010001; font-size: small;\"><span style=\"color: #010001; font-size: small;\">CONT<\/span><\/span><span style=\"font-size: small;\">::<\/span><span style=\"color: #010001; font-size: small;\"><span style=\"color: #010001; font-size: small;\">value_type <\/span><\/span><span style=\"color: #010001; font-size: small;\"><span style=\"color: #010001; font-size: small;\">ctype<\/span><\/span><span style=\"font-size: small;\">;<\/span><\/span><\/p>\n<p><span style=\"color: #008000; font-size: small; font-family: verdana, geneva;\"><span style=\"color: #008000; font-size: small;\">\/\/ define an iterator and a const iterator<\/span><\/span><\/p>\n<p><span style=\"font-family: verdana, geneva;\"><span style=\"color: #0000ff; font-size: small;\"><span style=\"color: #0000ff; font-size: small;\">typedef <\/span><\/span><span style=\"color: #0000ff; font-size: small;\"><span style=\"color: #0000ff; font-size: small;\">typename <\/span><\/span><span style=\"color: #010001; font-size: small;\"><span style=\"color: #010001; font-size: small;\">CONT<\/span><\/span><span style=\"font-size: small;\">::<\/span><span style=\"color: #010001; font-size: small;\"><span style=\"color: #010001; font-size: small;\">iterator <\/span><\/span><span style=\"color: #010001; font-size: small;\"><span style=\"color: #010001; font-size: small;\">iter_range<\/span><\/span><span style=\"font-size: small;\">;<\/span><\/span><\/p>\n<p><span style=\"font-family: verdana, geneva;\"><span style=\"color: #0000ff; font-size: small;\"><span style=\"color: #0000ff; font-size: small;\">typedef <\/span><\/span><span style=\"color: #0000ff; font-size: small;\"><span style=\"color: #0000ff; font-size: small;\">typename <\/span><\/span><span style=\"color: #010001; font-size: small;\"><span style=\"color: #010001; font-size: small;\">CONT<\/span><\/span><span style=\"font-size: small;\">::<\/span><span style=\"color: #010001; font-size: small;\"><span style=\"color: #010001; font-size: small;\">const_iterator <\/span><\/span><span style=\"color: #010001; font-size: small;\"><span style=\"color: #010001; font-size: small;\">citer_range<\/span><\/span><span style=\"font-size: small;\">;<\/span><\/span><\/p>\n<p><span style=\"color: #008000; font-size: small; font-family: verdana, geneva;\"><span style=\"color: #008000; font-size: small;\">\/\/&nbsp; initialize range iterators<\/span><\/span><\/p>\n<p><span style=\"font-family: verdana, geneva;\"><span style=\"color: #010001; font-size: small;\"><span style=\"color: #010001; font-size: small;\">citer_range<\/span><\/span><span style=\"color: #010001; font-size: small;\"><span style=\"color: #010001; font-size: small;\">w_beg<\/span><\/span><span style=\"font-size: small;\"> = <\/span><span style=\"color: #010001; font-size: small;\"><span style=\"color: #010001; font-size: small;\">aCont2Print<\/span><\/span><span style=\"font-size: small;\">.<\/span><span style=\"color: #010001; font-size: small;\"><span style=\"color: #010001; font-size: small;\">begin<\/span><\/span><span style=\"font-size: small;\">();<\/span><\/span><\/p>\n<p><span style=\"font-family: verdana, geneva;\"><span style=\"color: #010001; font-size: small;\"><span style=\"color: #010001; font-size: small;\">citer_range<\/span><\/span><span style=\"color: #010001; font-size: small;\"><span style=\"color: #010001; font-size: small;\">w_end<\/span><\/span><span style=\"font-size: small;\"> = <\/span><span style=\"color: #010001; font-size: small;\"><span style=\"color: #010001; font-size: small;\">aCont2Print<\/span><\/span><span style=\"font-size: small;\">.<\/span><span style=\"color: #010001; font-size: small;\"><span style=\"color: #010001; font-size: small;\">end<\/span><\/span><span style=\"font-size: small;\">();<\/span><\/span><\/p>\n<p><span style=\"font-family: verdana, geneva;\"><span style=\"color: #010001; font-size: small;\"><span style=\"color: #010001; font-size: small;\">std<\/span><\/span><span style=\"font-size: small;\">::<\/span><span style=\"color: #010001; font-size: small;\"><span style=\"color: #010001; font-size: small;\">copy<\/span><\/span><span style=\"font-size: small;\">(<\/span><span style=\"color: #010001; font-size: small;\"><span style=\"color: #010001; font-size: small;\">w_beg<\/span><\/span><span style=\"font-size: small;\">,<\/span><span style=\"color: #010001; font-size: small;\"><span style=\"color: #010001; font-size: small;\">w_end<\/span><\/span><span style=\"font-size: small;\">, <\/span><\/span><\/p>\n<p><span style=\"font-family: verdana, geneva;\"><span style=\"color: #010001; font-size: small;\"><span style=\"color: #010001; font-size: small;\">std<\/span><\/span><span style=\"font-size: small;\">::<\/span><span style=\"color: #010001; font-size: small;\"><span style=\"color: #010001; font-size: small;\">ostream_iterator<\/span><\/span><span style=\"font-size: small;\">&lt;<\/span><span style=\"color: #010001; font-size: small;\"><span style=\"color: #010001; font-size: small;\">ctype<\/span><\/span><span style=\"font-size: small;\">&gt;(<\/span><span style=\"color: #010001; font-size: small;\"><span style=\"color: #010001; font-size: small;\">std<\/span><\/span><span style=\"font-size: small;\">::<\/span><span style=\"color: #010001; font-size: small;\"><span style=\"color: #010001; font-size: small;\">cout<\/span><\/span><span style=\"font-size: small;\">,<\/span><span style=\"color: #a31515; font-size: small;\"><span style=\"color: #a31515; font-size: small;\">\u00a0\u00bb \u00ab\u00a0<\/span><\/span><span style=\"font-size: small;\">));<\/span><\/span><\/p>\n<p><span style=\"font-family: verdana, geneva;\"><span style=\"color: #010001; font-size: small;\"><span style=\"color: #010001; font-size: small;\">std<\/span><\/span><span style=\"font-size: small;\">::<\/span><span style=\"color: #010001; font-size: small;\"><span style=\"color: #010001; font-size: small;\">cout<\/span><\/span><span style=\"font-size: small;\"> &lt;&lt; <\/span><span style=\"color: #a31515; font-size: small;\"><span style=\"color: #a31515; font-size: small;\">\u00ab\u00a0\\n\u00a0\u00bb<\/span><\/span><span style=\"font-size: small;\">;<\/span><\/span><\/p>\n<p><span style=\"font-family: verdana, geneva;\">}<\/span><\/p>\n<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p><span style=\"font-family: verdana, geneva; color: #ffffff;\">&nbsp;<\/span><\/p>\n\n\n\n<p><span style=\"font-family: verdana, geneva; color: #ffffff;\">\u00c2&nbsp;<\/span><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Dans ce premier tips and tricks, nous presentons des exemples de programmation C++ tir\u00e9s de notre environnement de programmation \u00ab\u00a0Elligno Virtual Physics Studio\u00a0\u00bb.<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[24],"tags":[],"class_list":["post-185","post","type-post","status-publish","format-standard","hentry","category-trucs-et-astuces"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Boost et STL - Elligno<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/elligno.com\/fr\/tips-avec-tableau\/\" \/>\n<meta property=\"og:locale\" content=\"fr_FR\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Boost et STL - Elligno\" \/>\n<meta property=\"og:description\" content=\"Dans ce premier tips and tricks, nous presentons des exemples de programmation C++ tir\u00e9s de notre environnement de programmation &quot;Elligno Virtual Physics Studio&quot;.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/elligno.com\/fr\/tips-avec-tableau\/\" \/>\n<meta property=\"og:site_name\" content=\"Elligno\" \/>\n<meta property=\"article:published_time\" content=\"2012-12-21T15:25:46+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2021-05-26T18:08:37+00:00\" \/>\n<meta name=\"author\" content=\"Elligno\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"\u00c9crit par\" \/>\n\t<meta name=\"twitter:data1\" content=\"Elligno\" \/>\n\t<meta name=\"twitter:label2\" content=\"Dur\u00e9e de lecture estim\u00e9e\" \/>\n\t<meta name=\"twitter:data2\" content=\"1 minute\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/elligno.com\\\/fr\\\/tips-avec-tableau\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/elligno.com\\\/fr\\\/tips-avec-tableau\\\/\"},\"author\":{\"name\":\"Elligno\",\"@id\":\"https:\\\/\\\/elligno.com\\\/fr\\\/#\\\/schema\\\/person\\\/95f2e5f7a779215bc13c98f05efafc8b\"},\"headline\":\"Boost et STL\",\"datePublished\":\"2012-12-21T15:25:46+00:00\",\"dateModified\":\"2021-05-26T18:08:37+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/elligno.com\\\/fr\\\/tips-avec-tableau\\\/\"},\"wordCount\":296,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/elligno.com\\\/fr\\\/#organization\"},\"articleSection\":[\"Trucs et astuces\"],\"inLanguage\":\"fr-FR\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/elligno.com\\\/fr\\\/tips-avec-tableau\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/elligno.com\\\/fr\\\/tips-avec-tableau\\\/\",\"url\":\"https:\\\/\\\/elligno.com\\\/fr\\\/tips-avec-tableau\\\/\",\"name\":\"Boost et STL - Elligno\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/elligno.com\\\/fr\\\/#website\"},\"datePublished\":\"2012-12-21T15:25:46+00:00\",\"dateModified\":\"2021-05-26T18:08:37+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/elligno.com\\\/fr\\\/tips-avec-tableau\\\/#breadcrumb\"},\"inLanguage\":\"fr-FR\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/elligno.com\\\/fr\\\/tips-avec-tableau\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/elligno.com\\\/fr\\\/tips-avec-tableau\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/elligno.com\\\/fr\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Boost et STL\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/elligno.com\\\/fr\\\/#website\",\"url\":\"https:\\\/\\\/elligno.com\\\/fr\\\/\",\"name\":\"Elligno\",\"description\":\"Site dev elligno\",\"publisher\":{\"@id\":\"https:\\\/\\\/elligno.com\\\/fr\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/elligno.com\\\/fr\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"fr-FR\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/elligno.com\\\/fr\\\/#organization\",\"name\":\"Elligno Inc\",\"url\":\"https:\\\/\\\/elligno.com\\\/fr\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"fr-FR\",\"@id\":\"https:\\\/\\\/elligno.com\\\/fr\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/elligno.com\\\/wp-content\\\/uploads\\\/2021\\\/06\\\/favicon.png\",\"contentUrl\":\"https:\\\/\\\/elligno.com\\\/wp-content\\\/uploads\\\/2021\\\/06\\\/favicon.png\",\"width\":256,\"height\":256,\"caption\":\"Elligno Inc\"},\"image\":{\"@id\":\"https:\\\/\\\/elligno.com\\\/fr\\\/#\\\/schema\\\/logo\\\/image\\\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/elligno.com\\\/fr\\\/#\\\/schema\\\/person\\\/95f2e5f7a779215bc13c98f05efafc8b\",\"name\":\"Elligno\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"fr-FR\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/5d5d65a6272025dfbdbf8600bd75d9abcc5eede7e37fe620531e2d2c00f91464?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/5d5d65a6272025dfbdbf8600bd75d9abcc5eede7e37fe620531e2d2c00f91464?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/5d5d65a6272025dfbdbf8600bd75d9abcc5eede7e37fe620531e2d2c00f91464?s=96&d=mm&r=g\",\"caption\":\"Elligno\"},\"sameAs\":[\"https:\\\/\\\/elligno.com\"],\"url\":\"https:\\\/\\\/elligno.com\\\/fr\\\/author\\\/panel-65ui89\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Boost et STL - Elligno","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/elligno.com\/fr\/tips-avec-tableau\/","og_locale":"fr_FR","og_type":"article","og_title":"Boost et STL - Elligno","og_description":"Dans ce premier tips and tricks, nous presentons des exemples de programmation C++ tir\u00e9s de notre environnement de programmation \"Elligno Virtual Physics Studio\".","og_url":"https:\/\/elligno.com\/fr\/tips-avec-tableau\/","og_site_name":"Elligno","article_published_time":"2012-12-21T15:25:46+00:00","article_modified_time":"2021-05-26T18:08:37+00:00","author":"Elligno","twitter_card":"summary_large_image","twitter_misc":{"\u00c9crit par":"Elligno","Dur\u00e9e de lecture estim\u00e9e":"1 minute"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/elligno.com\/fr\/tips-avec-tableau\/#article","isPartOf":{"@id":"https:\/\/elligno.com\/fr\/tips-avec-tableau\/"},"author":{"name":"Elligno","@id":"https:\/\/elligno.com\/fr\/#\/schema\/person\/95f2e5f7a779215bc13c98f05efafc8b"},"headline":"Boost et STL","datePublished":"2012-12-21T15:25:46+00:00","dateModified":"2021-05-26T18:08:37+00:00","mainEntityOfPage":{"@id":"https:\/\/elligno.com\/fr\/tips-avec-tableau\/"},"wordCount":296,"commentCount":0,"publisher":{"@id":"https:\/\/elligno.com\/fr\/#organization"},"articleSection":["Trucs et astuces"],"inLanguage":"fr-FR","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/elligno.com\/fr\/tips-avec-tableau\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/elligno.com\/fr\/tips-avec-tableau\/","url":"https:\/\/elligno.com\/fr\/tips-avec-tableau\/","name":"Boost et STL - Elligno","isPartOf":{"@id":"https:\/\/elligno.com\/fr\/#website"},"datePublished":"2012-12-21T15:25:46+00:00","dateModified":"2021-05-26T18:08:37+00:00","breadcrumb":{"@id":"https:\/\/elligno.com\/fr\/tips-avec-tableau\/#breadcrumb"},"inLanguage":"fr-FR","potentialAction":[{"@type":"ReadAction","target":["https:\/\/elligno.com\/fr\/tips-avec-tableau\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/elligno.com\/fr\/tips-avec-tableau\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/elligno.com\/fr\/"},{"@type":"ListItem","position":2,"name":"Boost et STL"}]},{"@type":"WebSite","@id":"https:\/\/elligno.com\/fr\/#website","url":"https:\/\/elligno.com\/fr\/","name":"Elligno","description":"Site dev elligno","publisher":{"@id":"https:\/\/elligno.com\/fr\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/elligno.com\/fr\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"fr-FR"},{"@type":"Organization","@id":"https:\/\/elligno.com\/fr\/#organization","name":"Elligno Inc","url":"https:\/\/elligno.com\/fr\/","logo":{"@type":"ImageObject","inLanguage":"fr-FR","@id":"https:\/\/elligno.com\/fr\/#\/schema\/logo\/image\/","url":"https:\/\/elligno.com\/wp-content\/uploads\/2021\/06\/favicon.png","contentUrl":"https:\/\/elligno.com\/wp-content\/uploads\/2021\/06\/favicon.png","width":256,"height":256,"caption":"Elligno Inc"},"image":{"@id":"https:\/\/elligno.com\/fr\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/elligno.com\/fr\/#\/schema\/person\/95f2e5f7a779215bc13c98f05efafc8b","name":"Elligno","image":{"@type":"ImageObject","inLanguage":"fr-FR","@id":"https:\/\/secure.gravatar.com\/avatar\/5d5d65a6272025dfbdbf8600bd75d9abcc5eede7e37fe620531e2d2c00f91464?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/5d5d65a6272025dfbdbf8600bd75d9abcc5eede7e37fe620531e2d2c00f91464?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/5d5d65a6272025dfbdbf8600bd75d9abcc5eede7e37fe620531e2d2c00f91464?s=96&d=mm&r=g","caption":"Elligno"},"sameAs":["https:\/\/elligno.com"],"url":"https:\/\/elligno.com\/fr\/author\/panel-65ui89\/"}]}},"_links":{"self":[{"href":"https:\/\/elligno.com\/fr\/wp-json\/wp\/v2\/posts\/185","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/elligno.com\/fr\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/elligno.com\/fr\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/elligno.com\/fr\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/elligno.com\/fr\/wp-json\/wp\/v2\/comments?post=185"}],"version-history":[{"count":0,"href":"https:\/\/elligno.com\/fr\/wp-json\/wp\/v2\/posts\/185\/revisions"}],"wp:attachment":[{"href":"https:\/\/elligno.com\/fr\/wp-json\/wp\/v2\/media?parent=185"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/elligno.com\/fr\/wp-json\/wp\/v2\/categories?post=185"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/elligno.com\/fr\/wp-json\/wp\/v2\/tags?post=185"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}