{"id":614,"date":"2024-01-10T18:55:11","date_gmt":"2024-01-10T18:55:11","guid":{"rendered":"https:\/\/javigomez.org\/?p=614"},"modified":"2025-09-29T20:33:44","modified_gmt":"2025-09-29T20:33:44","slug":"u06-10-copia-de-arrays","status":"publish","type":"post","link":"https:\/\/javigomez.org\/index.php\/2024\/01\/10\/u06-10-copia-de-arrays\/","title":{"rendered":"U06-10-Copia de Arrays"},"content":{"rendered":"\n<p><strong>static<\/strong><strong> tipo[] <\/strong><strong>copyOf<\/strong><strong>(tipo origen[], <\/strong><strong>int<\/strong><strong> longitud)<\/strong>;<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>int t&#91;] = {1, 2, 1, 6, 23}; \/\/tabla origen \nint a&#91;], b&#91;]; \/\/ tablas destino \na = Arrays.copyOf(t, 3); \/\/a = &#91;1, 2, 1] \nb = Arrays.copyOf(t, 10); \/\/b = &#91;1, 2, 1, 6, 23, 0, 0, 0, 0, 0]\n<\/code><\/pre>\n\n\n\n<p><strong>static tipo[] copyOfRange(tipo origen[], int desde, int hasta)<\/strong>;<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>int t&#91;] = {7, 5, 3, 1, 0, -2}; \nint a&#91;] = Arrays.copyOfRange(t, 1, 4); \/\/a = &#91;5, 3, 1] \n<\/code><\/pre>\n\n\n\n<p><strong>voidSystem.arraycopy(ObjecttablaOrigen, intposOrigen, ObjecttablaDestino, intposDestino, int longitud<\/strong>);<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>int t&#91;] = {1, 3, 4, 8}; \nint o&#91;] = {9, 9, 9, 9}; \nSystem.arraycopy(t, 1, o, 2, 2); \nSystem.out.println (Arrays.toString(o)); \n\/\/Muestra &#91;9, 9, 3, 4]<\/code><\/pre>\n\n\n\n<figure class=\"wp-block-embed is-type-video is-provider-youtube wp-block-embed-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio\"><div class=\"wp-block-embed__wrapper\">\n<iframe loading=\"lazy\" title=\"Java U6 10 copyOf copyOfRange arraycopy\" width=\"1200\" height=\"675\" src=\"https:\/\/www.youtube.com\/embed\/LFhlCGRDi7s?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share\" referrerpolicy=\"strict-origin-when-cross-origin\" allowfullscreen><\/iframe>\n<\/div><\/figure>\n","protected":false},"excerpt":{"rendered":"<p>static tipo[] copyOf(tipo origen[], int longitud); static tipo[] copyOfRange(tipo origen[], int desde, int hasta); voidSystem.arraycopy(ObjecttablaOrigen, intposOrigen, ObjecttablaDestino, intposDestino, int longitud);<\/p>\n","protected":false},"author":1,"featured_media":615,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[5],"tags":[41,97,98,99,203],"class_list":["post-614","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-java","tag-arraycopy","tag-copiar-arrays","tag-copyof","tag-copyofrange","tag-java"],"_links":{"self":[{"href":"https:\/\/javigomez.org\/index.php\/wp-json\/wp\/v2\/posts\/614","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/javigomez.org\/index.php\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/javigomez.org\/index.php\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/javigomez.org\/index.php\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/javigomez.org\/index.php\/wp-json\/wp\/v2\/comments?post=614"}],"version-history":[{"count":1,"href":"https:\/\/javigomez.org\/index.php\/wp-json\/wp\/v2\/posts\/614\/revisions"}],"predecessor-version":[{"id":899,"href":"https:\/\/javigomez.org\/index.php\/wp-json\/wp\/v2\/posts\/614\/revisions\/899"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/javigomez.org\/index.php\/wp-json\/wp\/v2\/media\/615"}],"wp:attachment":[{"href":"https:\/\/javigomez.org\/index.php\/wp-json\/wp\/v2\/media?parent=614"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/javigomez.org\/index.php\/wp-json\/wp\/v2\/categories?post=614"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/javigomez.org\/index.php\/wp-json\/wp\/v2\/tags?post=614"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}