X-Received: by 10.68.221.193 with SMTP id qg1mr33907476pbc.14.1441868871399; Thu, 10 Sep 2015 00:07:51 -0700 (PDT) X-Received: by 10.182.105.34 with SMTP id gj2mr159743obb.34.1441868871359; Thu, 10 Sep 2015 00:07:51 -0700 (PDT) Path: csiph.com!xmission!news.glorb.com!kq10no2574997igb.0!news-out.google.com!f6ni415igi.0!nntp.google.com!kq10no2574996igb.0!postnews.google.com!glegroupsg2000goo.googlegroups.com!not-for-mail Newsgroups: it.comp.java Date: Thu, 10 Sep 2015 00:07:51 -0700 (PDT) In-Reply-To: Complaints-To: groups-abuse@google.com Injection-Info: glegroupsg2000goo.googlegroups.com; posting-host=79.46.57.178; posting-account=alWjRAoAAABzAQDIs-0m2KU-hS1ktifO NNTP-Posting-Host: 79.46.57.178 References: <8dc8d07f-1f44-4a47-a322-1403253a9206@googlegroups.com> <26b0b63d-db59-4a80-8576-2d8f3ee5db93@googlegroups.com> <5ae21140-5a93-42d5-9ffb-64632663d24a@googlegroups.com> User-Agent: G2/1.0 MIME-Version: 1.0 Message-ID: <3af300aa-335a-4f5d-8f21-5ffb2349262e@googlegroups.com> Subject: Re: quesito su java e variabili From: =?ISO-8859-1?B?UGGwTLA=?= Injection-Date: Thu, 10 Sep 2015 07:07:51 +0000 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Xref: csiph.com it.comp.java:8519 Il giorno mercoled=EC 9 settembre 2015 12:52:50 UTC+2, Vittorio ha scritto: > "4ndre4" ha scritto nel messaggio=20 > news:5ae21140-5a93-42d5-9ffb-64632663d24a@googlegroups.com... >=20 > operazioni differenti. >=20 > Tu conosci un controesempio di codice in cui le due opzioni porterebbero= a=20 > due risultati differenti? Eccoti un "controesempio": public class Main { private static int metodo() { return 0; } public static void main(String[] args) { int x =3D 1; int y; =09 y =3D x; y =3D metodo(); } }