{"id":12673,"date":"2015-01-14T21:09:03","date_gmt":"2015-01-15T02:09:03","guid":{"rendered":"https:\/\/panamahitek.com\/el-uso-de-listas-en-java\/"},"modified":"2021-09-25T11:12:58","modified_gmt":"2021-09-25T16:12:58","slug":"the-use-of-lists-in-java","status":"publish","type":"post","link":"https:\/\/panamahitek.com\/en\/the-use-of-lists-in-java\/","title":{"rendered":"The use of Lists in Java"},"content":{"rendered":"<h6 style=\"text-align: justify;\">The use of lists in Java is a useful way to store and manipulate large volumes of data, just as we would in an array, but with a series of advantages that make these types of variables the preferred ones for processing large amounts of information.<\/h6>\n<p style=\"text-align: justify;\">Lists in Java are variables that allow you to store large amounts of data. They are similar to Arrays. However, talking to my friend <a href=\"http:\/\/avbravo.blogspot.com\/\"><strong>Aristides Villarreal<\/strong> <\/a>(one of the best Java programmers today) tells me that the new trends in programming are oriented to the use of Lists to handle large volumes of data. In fact, Java 8, within its new programming tools (specifically Lambda expressions), has many interesting functionalities implementing lists, which will allow us to achieve many great things in a much faster and easier way than before (however, this is content for another post).<\/p>\n<p style=\"text-align: justify;\">This has led me to look for ways to add the Lists in Java to my programming tools. Actually I&#8217;m not very good at using these types of variables since I&#8217;m just starting to use them, but I feel the need to share what little I know since with this I help other people while making my own notebook for future use.<br \/>\n<!--more--><\/p>\n<p style=\"text-align: justify;\">Something that amazes me about lists in Java is the fact that you don&#8217;t need to set a specific size for the variable, unlike traditional arrays. Lists are very versatile and much easier to handle than other types of data grouping variables.<\/p>\n<p>So&#8230; how do we declare a list? Well, we follow the following structure:<\/p>\n<pre class=\"lang:default decode:true \">List ejemploLista = new ArrayList();<\/pre>\n<p>This type of list can store any type of data, but this approach is now obsolete. It is preferred that the type of data to be stored is specified. So, to declare a list where we will store data type String, we do the following:<\/p>\n<pre class=\"lang:default decode:true\">List&lt;String&gt; ejemploLista = new ArrayList&lt;&gt;();<\/pre>\n<p>With our list created, we can start entering data into it. Suppose we want to add the following names: <strong>Juan, Pedro, Jos\u00e9, Mar\u00eda, Sof\u00eda<\/strong>. We do the following:<\/p>\n<pre class=\"lang:default decode:true \"> List&lt;String&gt; ejemploLista = new ArrayList&lt;&gt;();\r\n      ejemploLista.add(\"Juan\");\r\n      ejemploLista.add(\"Pedro\");\r\n      ejemploLista.add(\"Jos\u00e9\");\r\n      ejemploLista.add(\"Mar\u00eda\");\r\n      ejemploLista.add(\"Sof\u00eda\");<\/pre>\n<p>It is also possible to add the index in which we want to add said element. We can also obtain the number of elements that the list has:<\/p>\n<pre class=\"lang:default decode:true \">ejemploLista.size();<\/pre>\n<p>To extract elements from the list we use:<\/p>\n<pre class=\"lang:default decode:true\">ejemploLista.get(0);<\/pre>\n<p>Where 0 is the index in which the information we want is located. In this case, the index 0 would be <strong>Pedro<\/strong>. If we want to delete a certain element:<\/p>\n<pre class=\"lang:default decode:true \">ejemploLista.remove(0);<\/pre>\n<p>Where again the 0 represents the index that we want to eliminate. Another way to delete a record is by name:<\/p>\n<pre class=\"lang:default decode:true \">ejemploLista.remove(\"Juan\");<\/pre>\n<p>If we want to print the elements of the list in the console:<\/p>\n<pre class=\"lang:java decode:true \">System.out.println(ejemploLista);<\/pre>\n<p>This will produce the following output:<\/p>\n<p style=\"text-align: center;\"><a href=\"https:\/\/panamahitek.com\/wp-content\/uploads\/2015\/01\/listas-en-java.png\"><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter wp-image-11549 size-full\" src=\"https:\/\/panamahitek.com\/wp-content\/uploads\/2015\/01\/listas-en-java.png\" alt=\"lists in java\" width=\"374\" height=\"152\" srcset=\"https:\/\/panamahitek.com\/wp-content\/uploads\/2015\/01\/listas-en-java.png 374w, https:\/\/panamahitek.com\/wp-content\/uploads\/2015\/01\/listas-en-java-300x122.png 300w\" sizes=\"auto, (max-width: 374px) 100vw, 374px\" \/><\/a><\/p>\n<p style=\"text-align: left;\">We can also print all the elements of the list individually with the help of a <strong>for loop<\/strong>.<\/p>\n<pre class=\"lang:java decode:true \"> for (int i = 0; i &lt;= ejemploLista.size() - 1; i++) {\r\n            System.out.println(ejemploLista.get(i));\r\n        }<\/pre>\n<p><a href=\"https:\/\/panamahitek.com\/wp-content\/uploads\/2015\/01\/listas-en-java1.png\"><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter wp-image-7151 size-full\" src=\"https:\/\/panamahitek.com\/wp-content\/uploads\/2015\/01\/listas-en-java1.png\" alt=\"lists in java\" width=\"374\" height=\"152\" srcset=\"https:\/\/panamahitek.com\/wp-content\/uploads\/2015\/01\/listas-en-java1.png 374w, https:\/\/panamahitek.com\/wp-content\/uploads\/2015\/01\/listas-en-java1-300x122.png 300w\" sizes=\"auto, (max-width: 374px) 100vw, 374px\" \/><\/a><\/p>\n<p>We could also use an iterator to loop through the list and print all its values:<\/p>\n<pre class=\"lang:java decode:true\">        Iterator i = ejemploLista.iterator();\r\n         while(i.hasNext())\r\n        {\r\n            System.out.println(i.next());\r\n        }<\/pre>\n<p>To remove all the elements from the list we use:<\/p>\n<pre class=\"lang:default decode:true \">ejemploLista.clear();<\/pre>\n<p>If we want to know if our list contains any element we use:<\/p>\n<pre class=\"lang:default decode:true \">ejemploLista.isEmpty();<\/pre>\n<p style=\"text-align: justify;\">This will return a true or a false. In case it contains an element, we can verify if we have a specific one among those elements. For example, if we want to know if <strong>Jos\u00e9<\/strong>&#8216;s name is written in our list, we use:<\/p>\n<pre class=\"lang:default decode:true\">ejemploLista.contains(\"Jos\u00e9\");<\/pre>\n<p style=\"text-align: justify;\">This will also return true or false. And if for some reason we want to modify any data in our list, for example index 1 that contains <strong>Pedro<\/strong>&#8216;s name, we use the following method:<\/p>\n<pre class=\"lang:default decode:true \">ejemploLista.set(1, \"F\u00e9lix\");<\/pre>\n<p style=\"text-align: justify;\">With this we will have changed the name in index 1 (Pedro) to the new name (Felix). If we want to extract a list that contains the names between one index and another we can use:<\/p>\n<pre class=\"lang:default decode:true \">ejemploLista.subList(0, 2)<\/pre>\n<p>Let&#8217;s look at the following example:<\/p>\n<p><a href=\"https:\/\/panamahitek.com\/wp-content\/uploads\/2015\/01\/listas-en-java2.png\"><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter wp-image-7154 size-full\" src=\"https:\/\/panamahitek.com\/wp-content\/uploads\/2015\/01\/listas-en-java2.png\" alt=\"lists in java\" width=\"423\" height=\"170\" srcset=\"https:\/\/panamahitek.com\/wp-content\/uploads\/2015\/01\/listas-en-java2.png 423w, https:\/\/panamahitek.com\/wp-content\/uploads\/2015\/01\/listas-en-java2-300x121.png 300w\" sizes=\"auto, (max-width: 423px) 100vw, 423px\" \/><\/a><\/p>\n<p>The result of this is:<\/p>\n<p><a href=\"https:\/\/panamahitek.com\/wp-content\/uploads\/2015\/01\/listas-en-java3.png\"><img loading=\"lazy\" decoding=\"async\" class=\" size-full wp-image-7155 aligncenter\" src=\"https:\/\/panamahitek.com\/wp-content\/uploads\/2015\/01\/listas-en-java3.png\" alt=\"listas en java\" width=\"374\" height=\"152\" srcset=\"https:\/\/panamahitek.com\/wp-content\/uploads\/2015\/01\/listas-en-java3.png 374w, https:\/\/panamahitek.com\/wp-content\/uploads\/2015\/01\/listas-en-java3-300x122.png 300w\" sizes=\"auto, (max-width: 374px) 100vw, 374px\" \/><\/a><\/p>\n<p style=\"text-align: justify;\">These are the elementary uses that we can give to the lists. In future posts I will be explaining how to create lists of more than one dimension and the use of Lambda expressions, in Java 8.<\/p>\n<p style=\"text-align: justify;\">For now, I hope this information is useful for you. Greetings.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>The use of lists in Java is a useful way to store and manipulate large volumes of data, just as we would in an array, but with a series of advantages that make these types of variables the preferred ones for processing large amounts of information. Lists in Java are variables that allow you to [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":11550,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[1972,1973],"tags":[1976,1975,1974],"class_list":{"0":"post-12673","1":"post","2":"type-post","3":"status-publish","4":"format-standard","5":"has-post-thumbnail","7":"category-java-en","8":"category-java-for-begginers","9":"tag-java-en","10":"tag-java-for-begginers","11":"tag-lists-in-java"},"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.8 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>The use of Lists in Java - Panama Hitek<\/title>\n<meta name=\"description\" content=\"Using Lists in Java is a useful way to store and manipulate large volumes of data, just as we would in a traditional array\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/panamahitek.com\/en\/the-use-of-lists-in-java\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"The use of Lists in Java - Panama Hitek\" \/>\n<meta property=\"og:description\" content=\"Using Lists in Java is a useful way to store and manipulate large volumes of data, just as we would in a traditional array\" \/>\n<meta property=\"og:url\" content=\"https:\/\/panamahitek.com\/en\/the-use-of-lists-in-java\/\" \/>\n<meta property=\"og:site_name\" content=\"Panama Hitek\" \/>\n<meta property=\"article:author\" content=\"https:\/\/www.facebook.com\/antony.garcia.gonzalez\" \/>\n<meta property=\"article:published_time\" content=\"2015-01-15T02:09:03+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2021-09-25T16:12:58+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/panamahitek.com\/wp-content\/uploads\/2015\/01\/java.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"850\" \/>\n\t<meta property=\"og:image:height\" content=\"300\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Antony Garc\u00eda Gonz\u00e1lez\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@https:\/\/twitter.com\/antony_garcia_g\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Antony Garc\u00eda Gonz\u00e1lez\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/panamahitek.com\/en\/the-use-of-lists-in-java\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/panamahitek.com\/en\/the-use-of-lists-in-java\/\"},\"author\":{\"name\":\"Antony Garc\u00eda Gonz\u00e1lez\",\"@id\":\"https:\/\/panamahitek.com\/en\/#\/schema\/person\/a22e06c60a9a3fad2dcddfb25a6fca6e\"},\"headline\":\"The use of Lists in Java\",\"datePublished\":\"2015-01-15T02:09:03+00:00\",\"dateModified\":\"2021-09-25T16:12:58+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/panamahitek.com\/en\/the-use-of-lists-in-java\/\"},\"wordCount\":675,\"commentCount\":0,\"image\":{\"@id\":\"https:\/\/panamahitek.com\/en\/the-use-of-lists-in-java\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/panamahitek.com\/wp-content\/uploads\/2015\/01\/java.jpg\",\"keywords\":[\"Java\",\"java for begginers\",\"lists in java\"],\"articleSection\":[\"Java\",\"Java for begginers\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/panamahitek.com\/en\/the-use-of-lists-in-java\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/panamahitek.com\/en\/the-use-of-lists-in-java\/\",\"url\":\"https:\/\/panamahitek.com\/en\/the-use-of-lists-in-java\/\",\"name\":\"The use of Lists in Java - Panama Hitek\",\"isPartOf\":{\"@id\":\"https:\/\/panamahitek.com\/en\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/panamahitek.com\/en\/the-use-of-lists-in-java\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/panamahitek.com\/en\/the-use-of-lists-in-java\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/panamahitek.com\/wp-content\/uploads\/2015\/01\/java.jpg\",\"datePublished\":\"2015-01-15T02:09:03+00:00\",\"dateModified\":\"2021-09-25T16:12:58+00:00\",\"author\":{\"@id\":\"https:\/\/panamahitek.com\/en\/#\/schema\/person\/a22e06c60a9a3fad2dcddfb25a6fca6e\"},\"description\":\"Using Lists in Java is a useful way to store and manipulate large volumes of data, just as we would in a traditional array\",\"breadcrumb\":{\"@id\":\"https:\/\/panamahitek.com\/en\/the-use-of-lists-in-java\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/panamahitek.com\/en\/the-use-of-lists-in-java\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/panamahitek.com\/en\/the-use-of-lists-in-java\/#primaryimage\",\"url\":\"https:\/\/panamahitek.com\/wp-content\/uploads\/2015\/01\/java.jpg\",\"contentUrl\":\"https:\/\/panamahitek.com\/wp-content\/uploads\/2015\/01\/java.jpg\",\"width\":850,\"height\":300},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/panamahitek.com\/en\/the-use-of-lists-in-java\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Portada\",\"item\":\"https:\/\/panamahitek.com\/en\/home\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"The use of Lists in Java\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/panamahitek.com\/en\/#website\",\"url\":\"https:\/\/panamahitek.com\/en\/\",\"name\":\"Panama Hitek\",\"description\":\"Conocimiento libre, de Panam\u00e1 para el mundo\",\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/panamahitek.com\/en\/#\/schema\/person\/a22e06c60a9a3fad2dcddfb25a6fca6e\",\"name\":\"Antony Garc\u00eda Gonz\u00e1lez\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/panamahitek.com\/en\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/d7a10397454e66de561db7fc2ed37dd2bd115478c378b22eaafd410de973dfd1?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/d7a10397454e66de561db7fc2ed37dd2bd115478c378b22eaafd410de973dfd1?s=96&d=mm&r=g\",\"caption\":\"Antony Garc\u00eda Gonz\u00e1lez\"},\"description\":\"Ingeniero Electromec\u00e1nico, egresado de la Universidad Tecnol\u00f3gica de Panam\u00e1. Miembro fundador de Panama Hitek. Entusiasta de la electr\u00f3nica y la programaci\u00f3n.\",\"sameAs\":[\"https:\/\/www.facebook.com\/antony.garcia.gonzalez\",\"https:\/\/www.instagram.com\/antony.garcia.gonzalez\",\"https:\/\/www.linkedin.com\/in\/antony-garcia-gonzalez-96539461\/\",\"https:\/\/x.com\/https:\/\/twitter.com\/antony_garcia_g\"],\"url\":\"https:\/\/panamahitek.com\/en\/author\/agarciag-2\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"The use of Lists in Java - Panama Hitek","description":"Using Lists in Java is a useful way to store and manipulate large volumes of data, just as we would in a traditional array","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:\/\/panamahitek.com\/en\/the-use-of-lists-in-java\/","og_locale":"en_US","og_type":"article","og_title":"The use of Lists in Java - Panama Hitek","og_description":"Using Lists in Java is a useful way to store and manipulate large volumes of data, just as we would in a traditional array","og_url":"https:\/\/panamahitek.com\/en\/the-use-of-lists-in-java\/","og_site_name":"Panama Hitek","article_author":"https:\/\/www.facebook.com\/antony.garcia.gonzalez","article_published_time":"2015-01-15T02:09:03+00:00","article_modified_time":"2021-09-25T16:12:58+00:00","og_image":[{"width":850,"height":300,"url":"https:\/\/panamahitek.com\/wp-content\/uploads\/2015\/01\/java.jpg","type":"image\/jpeg"}],"author":"Antony Garc\u00eda Gonz\u00e1lez","twitter_card":"summary_large_image","twitter_creator":"@https:\/\/twitter.com\/antony_garcia_g","twitter_misc":{"Written by":"Antony Garc\u00eda Gonz\u00e1lez","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/panamahitek.com\/en\/the-use-of-lists-in-java\/#article","isPartOf":{"@id":"https:\/\/panamahitek.com\/en\/the-use-of-lists-in-java\/"},"author":{"name":"Antony Garc\u00eda Gonz\u00e1lez","@id":"https:\/\/panamahitek.com\/en\/#\/schema\/person\/a22e06c60a9a3fad2dcddfb25a6fca6e"},"headline":"The use of Lists in Java","datePublished":"2015-01-15T02:09:03+00:00","dateModified":"2021-09-25T16:12:58+00:00","mainEntityOfPage":{"@id":"https:\/\/panamahitek.com\/en\/the-use-of-lists-in-java\/"},"wordCount":675,"commentCount":0,"image":{"@id":"https:\/\/panamahitek.com\/en\/the-use-of-lists-in-java\/#primaryimage"},"thumbnailUrl":"https:\/\/panamahitek.com\/wp-content\/uploads\/2015\/01\/java.jpg","keywords":["Java","java for begginers","lists in java"],"articleSection":["Java","Java for begginers"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/panamahitek.com\/en\/the-use-of-lists-in-java\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/panamahitek.com\/en\/the-use-of-lists-in-java\/","url":"https:\/\/panamahitek.com\/en\/the-use-of-lists-in-java\/","name":"The use of Lists in Java - Panama Hitek","isPartOf":{"@id":"https:\/\/panamahitek.com\/en\/#website"},"primaryImageOfPage":{"@id":"https:\/\/panamahitek.com\/en\/the-use-of-lists-in-java\/#primaryimage"},"image":{"@id":"https:\/\/panamahitek.com\/en\/the-use-of-lists-in-java\/#primaryimage"},"thumbnailUrl":"https:\/\/panamahitek.com\/wp-content\/uploads\/2015\/01\/java.jpg","datePublished":"2015-01-15T02:09:03+00:00","dateModified":"2021-09-25T16:12:58+00:00","author":{"@id":"https:\/\/panamahitek.com\/en\/#\/schema\/person\/a22e06c60a9a3fad2dcddfb25a6fca6e"},"description":"Using Lists in Java is a useful way to store and manipulate large volumes of data, just as we would in a traditional array","breadcrumb":{"@id":"https:\/\/panamahitek.com\/en\/the-use-of-lists-in-java\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/panamahitek.com\/en\/the-use-of-lists-in-java\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/panamahitek.com\/en\/the-use-of-lists-in-java\/#primaryimage","url":"https:\/\/panamahitek.com\/wp-content\/uploads\/2015\/01\/java.jpg","contentUrl":"https:\/\/panamahitek.com\/wp-content\/uploads\/2015\/01\/java.jpg","width":850,"height":300},{"@type":"BreadcrumbList","@id":"https:\/\/panamahitek.com\/en\/the-use-of-lists-in-java\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Portada","item":"https:\/\/panamahitek.com\/en\/home\/"},{"@type":"ListItem","position":2,"name":"The use of Lists in Java"}]},{"@type":"WebSite","@id":"https:\/\/panamahitek.com\/en\/#website","url":"https:\/\/panamahitek.com\/en\/","name":"Panama Hitek","description":"Conocimiento libre, de Panam\u00e1 para el mundo","inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/panamahitek.com\/en\/#\/schema\/person\/a22e06c60a9a3fad2dcddfb25a6fca6e","name":"Antony Garc\u00eda Gonz\u00e1lez","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/panamahitek.com\/en\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/d7a10397454e66de561db7fc2ed37dd2bd115478c378b22eaafd410de973dfd1?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/d7a10397454e66de561db7fc2ed37dd2bd115478c378b22eaafd410de973dfd1?s=96&d=mm&r=g","caption":"Antony Garc\u00eda Gonz\u00e1lez"},"description":"Ingeniero Electromec\u00e1nico, egresado de la Universidad Tecnol\u00f3gica de Panam\u00e1. Miembro fundador de Panama Hitek. Entusiasta de la electr\u00f3nica y la programaci\u00f3n.","sameAs":["https:\/\/www.facebook.com\/antony.garcia.gonzalez","https:\/\/www.instagram.com\/antony.garcia.gonzalez","https:\/\/www.linkedin.com\/in\/antony-garcia-gonzalez-96539461\/","https:\/\/x.com\/https:\/\/twitter.com\/antony_garcia_g"],"url":"https:\/\/panamahitek.com\/en\/author\/agarciag-2\/"}]}},"jetpack_featured_media_url":"https:\/\/panamahitek.com\/wp-content\/uploads\/2015\/01\/java.jpg","jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/panamahitek.com\/en\/wp-json\/wp\/v2\/posts\/12673","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/panamahitek.com\/en\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/panamahitek.com\/en\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/panamahitek.com\/en\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/panamahitek.com\/en\/wp-json\/wp\/v2\/comments?post=12673"}],"version-history":[{"count":0,"href":"https:\/\/panamahitek.com\/en\/wp-json\/wp\/v2\/posts\/12673\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/panamahitek.com\/en\/wp-json\/wp\/v2\/media\/11550"}],"wp:attachment":[{"href":"https:\/\/panamahitek.com\/en\/wp-json\/wp\/v2\/media?parent=12673"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/panamahitek.com\/en\/wp-json\/wp\/v2\/categories?post=12673"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/panamahitek.com\/en\/wp-json\/wp\/v2\/tags?post=12673"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}